There is no license information available for the latest version (dev-master) of this package.

Very simple mysql client library based on PDO with placeholders support.

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/eugeniypetrov/mysql

dev-master 2014-02-05 23:40 UTC

This package is auto-updated.

Last update: 2025-09-22 02:11:05 UTC


README

Very simple mysql client library based on PDO with placeholders support.

Example:

$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%',
)));