This class can execute MySQL queries using prepared statements.
It can connect to a given MySQL database using the MySQLi extension.
The class can execute plain SQL queries or queries with parameters using prepared statements to pass the parameter values.
The parameter values are passed along the SQL query string in a single call as an array that defines either the parameter value and its type.
Queries that retrieve result sets return the results as arrays. The range of result set rows to be returned can be limited. |