Coder Social home page Coder Social logo

glue-sp's Introduction

glue-sp

A simple library for connecting PHP and SQL servers, with an ORM approach and a multiple DB connections caching mechanism.

Warning

This library is far from being perfect and was developed adhoc.

Files Structure

Database.php

The Database class sets database connection and initializes a PDO connection.

DBManager.php

The DBManager (or DBM in short) needs to be initialized with an array collecting all databases which are going to be in use. The array should be similar to the following example:

const DBS =     [self::DB_EMS         =>        ["localhost",
                                                 "ems",
                                                 "root",
                                                 ""],
                 self::DB_EXAMINERS   =>        ["localhost",
                                                 "ems_employees",
                                                 "root",
                                                 ""],
                 self::DB_FLIGHTS     =>        ["localhost",
                                                 "ems_flights",
                                                 "root",
                                                 ""]
                ];

The PDO instence associated with the DB can be called by calling the connection method with the name which was assigned to the DB as arg.

Model.php

Inherite for each of the nessecery tables. The model folder has some examples.

glue-sp's People

Contributors

zadokdaniel avatar

Stargazers

razielBg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.