DbiMysqli
class DbiMysqli implements DbiExtension (View source)
Interface to the MySQL Improved extension (MySQLi)
Methods
runs a query and returns the result
returns a string that represents the client library version
Returns last error message or an empty string if no errors occurred.
returns properly escaped string for use in MySQL queries
Details
Connection|null
connect(Server $server)
Connects to the database server.
bool
selectDb(DatabaseName $databaseName, Connection $connection)
selects given database
ResultInterface|false
realQuery(string $query, Connection $connection, bool $unbuffered = false)
runs a query and returns the result
bool
realMultiQuery(Connection $connection, string $query)
Run the multi query and output the results
bool
nextResult(Connection $connection)
Prepare next result from multi_query
ResultInterface|false
storeResult(Connection $connection)
Store the result returned from multi query
string
getHostInfo(Connection $connection)
Returns a string representing the type of connection used
string
getClientInfo()
returns a string that represents the client library version
string
getError(Connection $connection)
Returns last error message or an empty string if no errors occurred.
int|string
affectedRows(Connection $connection)
returns the number of rows affected by last query
string
escapeString(Connection $connection, string $string)
returns properly escaped string for use in MySQL queries
Statement|null
prepare(Connection $connection, string $query)
Prepare an SQL statement for execution.
int
getWarningCount(Connection $connection)
Returns the number of warnings from the last query.