PHP PDO MySQL Class: Access MySQL databases using PDOCustom PHP PDO Class
This class is a wrapper to access MySQL databases using PDO.
It can connect to a given MySQL server using PDO and then can perform several types of database access operations. Currently it can:
- Perform arbitrary SQL queries
- Bind parameter values of prepared queries
- Retrieve all rows of query results into an array
- Retrieve a single row of query results into an array
- Retrieve the ID value of the last recorded inserted into a table
- Begin, end and cancel a transaction