thephpeffect / connection-manager
A simple connection manager for any OOP db connection in PHP
v1.0
2015-09-23 00:05 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: 4.3
This package is not auto-updated.
Last update: 2025-01-30 02:13:59 UTC
README
A PHP singleton designed to keep track of multiple database connections.
Installation
The recommended way to install ConnectionManager is through composer(https://getcomposer.org/). Type the following command in your shell environment:
php ~/composer.phar require thephpeffect/connection-manager
Usage
The "default" connection can be accessed by the db() function without passing a connection name.
db("default", new mysqli(...)); db("stats", new PDO(...)); $result = db()->query("SELECT * FROM table1"); $statement = db("stats")->prepare("SELECT * FROM table1 WHERE a=? AND b=?");