14/03
2013
Wallogit.com
2017 © Pedro Peláez
To Install this, just run the shell code below., (*1)
git clone git@github.com:aequasi/ConnectionManager.git cd ConnectionManager composer install
OR, if you are using composer, (*2)
composer require aequasi/connection-manager dev-master
In your php file, add this at the top, changing the path to wherever it belongs, (*3)
// If you arent using composer in your global project, make sure you use the autoloader require_once( __DIR__ . '/ConnectionManager/vendor/autoload.php' ); use Aequasi\ConnectionManager;
Then, make a yml config file (placing it wherever you need) that looks like ConnectionManager/src/Aequasi/ConnectionManager/Resources/config/connection.yml, (*4)
In your code, that has the required above, follow this example:, (*5)
ConnectionManager::$config = $customConfigFilename; $classDb = ConnectionManager::getConnection( 'classdb', 'someuser', 'somepassword' ); $result = $classDb->executeQuery( $query )->fetchAll();