메소드 |
설명 |
|
__construct ( ) |
|
|
__destruct ( ) : void |
Automatically frees the resources allocated for this result set. |
|
applyLimit ( &$sql, $limit, $offset ) : void |
Injects LIMIT/OFFSET to the SQL query. |
|
begin ( $savepoint = NULL ) : void |
Begins a transaction (if supported). |
|
commit ( $savepoint = NULL ) : void |
Commits statements in a transaction. |
|
connect ( array &$config ) : void |
Connects to a database. |
|
createResultDriver ( $resource ) : Dibi\ResultDriver |
Result set driver factory. |
|
disconnect ( ) : void |
Disconnects from a database. |
|
escape ( $value, $type ) |
|
|
escapeBinary ( $value ) |
|
|
escapeBool ( $value ) |
|
|
escapeDate ( $value ) |
|
|
escapeDateTime ( $value ) |
|
|
escapeIdentifier ( $value ) |
|
|
escapeLike ( $value, $pos ) : string |
Encodes string for use in a LIKE statement. |
|
escapeText ( $value ) : string |
Encodes data for use in a SQL statement. |
|
fetch ( $assoc ) : array |
Fetches the row at current position and moves the internal cursor to the next position. |
|
free ( ) : void |
Frees the resources allocated for this result set. |
|
getAffectedRows ( ) : integer | FALSE |
Gets the number of affected rows by the last INSERT, UPDATE or DELETE query. |
|
getColumns ( $table ) : array |
Returns metadata for all columns in a table. |
|
getConstraints ( $table ) : array |
Returns list of constraints in given table. |
|
getForeignKeys ( $table ) : array |
Returns metadata for all foreign keys in a table. |
|
getFunctions ( ) : array |
Returns list of user defined functions (UDF). |
|
getGenerators ( ) : array |
Returns list of generators. |
|
getIndexes ( $table ) : array |
Returns metadata for all indexes in a table (the constraints are included). |
|
getIndices ( $table ) : array |
Returns list of indices in given table (the constraints are not listed). |
|
getInsertId ( $sequence ) : integer | FALSE |
Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query. |
|
getProcedures ( ) : array |
Returns list of stored procedures. |
|
getProceduresMeta ( ) : array |
Returns metadata from stored procedures and their input and output parameters. |
|
getReflector ( ) : Dibi\Reflector |
Returns the connection reflector. |
|
getResource ( ) : resource |
Returns the connection resource. |
|
getResultColumns ( ) : array |
Returns metadata for all columns in a result set. |
|
getResultResource ( ) : resource |
Returns the result set resource. |
|
getRowCount ( ) : integer |
Returns the number of rows in a result set. |
|
getTables ( ) : array |
Returns list of tables. |
|
getTriggers ( $table = NULL ) : array |
Returns list of triggers for given table. |
|
getTriggersMeta ( $table = NULL ) : array |
Returns metadata for all triggers in a table or database. |
|
inTransaction ( ) : boolean |
Is in transaction? |
|
query ( $sql ) : Dibi\ResultDriver | null |
Executes the SQL query. |
|
rollback ( $savepoint = NULL ) : void |
Rollback changes in a transaction. |
|
seek ( $row ) : boolean |
Moves cursor position without fetching row. |
|
unescapeBinary ( $value ) : string |
Decodes data from result set. |
|