Wallogit.com
2017 © Pedro Peláez
Very simple mysql client library based on PDO with placeholders support.
Very simple mysql client library based on PDO with placeholders support., (*1)
Example:, (*2)
$db = new \EugeniyPetrov\Mysql('127.0.0.1', 3306, 'root', '', 'test', 'utf8');
echo $db->one('SELECT NOW()') . "\n";
print_r($db->all('SHOW TABLES LIKE :prefix', array(
'prefix' => 'a%',
)));