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

https://github.com/aapis/mysql-db-driver

A simple database driver for MySQL applications that utilizes PDO and prepared statements.
https://github.com/aapis/mysql-db-driver

Last synced: 3 months ago
JSON representation

A simple database driver for MySQL applications that utilizes PDO and prepared statements.

Awesome Lists containing this project

README

        

A simple database class for use in custom applications.

The schema I'm using to test this class:

```CREATE DATABASE mysql_driver_test;```

```CREATE TABLE users (
id int(11) NOT NULL AUTO_INCREMENT,
name varchar(45) NOT NULL,
age int(11) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY id_UNIQUE (id)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;```