51 function query($sql, $params = array())
91 function getOne($sql, $params = array())
query($sql, $params=array())
Run an SQL query with the specified parameters, if any.
commit()
Commits a transaction on this connection, if supported.
getAll($sql, $params=array())
Run an SQL query with the specified parameters, if any.
getOne($sql, $params=array())
Run an SQL query and return the first column of the first row of the result set, if any...
begin()
Starts a transaction on this connection, if supported.
getRow($sql, $params=array())
Run an SQL query and return the first row of the result set, if any.
rollback()
Performs a rollback on this connection, if supported.
autoCommit($mode)
Sets auto-commit mode on this database connection.