An open API service indexing awesome lists of open source software.

https://github.com/dcramer/php-database

A simple database library for MySQL and PGSQL.
https://github.com/dcramer/php-database

Last synced: about 2 months ago
JSON representation

A simple database library for MySQL and PGSQL.

Awesome Lists containing this project

README

          

An intuitive and simple database library with expressions based on sprintf formatting.

Example::

$mydb = new MySQLdb('localhost', 'root', 'password', false, 'database_name);
$result = $mydb->query("SELECT 1 FROM table WHERE fieldname = %s AND other_fieldname = %d", 'mystring', 5);