The Mysql package is designed to provide basic functionality for connecting, querying, data retrieval, and error reporting against a MySQL database server.
The package is divided into 4 main classes (with a fifth typed exception):
- Mysql – Contains basic functionality for connecting and querying against a MySQL database, also provides access to MySQL_Statement.
- Mysql_Statement – Accessed through the Mysql::prepare() method and is used for preparing and executing a SQL statement against a MySQL database.
- Mysql_Result – Provides easy access to data contained in a MySQL result set.
- Mysql_Exception – Used for errors coming from MySQL or associated classes.
Documentation
- End-Users – Copy of README.txt
- Code – Documentation created using PHPDocumentor
- Unit Tests – Run unit tests live on this site



