This class can Connect and query a MySQL database using the MySQLi extension.
It can read and parse a configuration file in the INI format and establishes a connection to a MySQL database server using connection parameters obtained from that configuration file.
The class can also perform several types of operations to access the MySQL database like:
1. Connect to Database
2. Query the database
3. Query the database for number of Rows (mysqli_num_rows)
4. Fetch rows from the database (SELECT query)
5. Fetch the last error from the database
6. Fetch the last Insert Id from the database
7. Quote and escape value for use in a database query |