PHP 클래스 Dibi\Drivers\FirebirdDriver

Driver options: - database => the path to database file (server:/path/database.fdb) - username (or user) - password (or pass) - charset => character encoding to set - buffers (int) => buffers is the number of database buffers to allocate for the server-side cache. If 0 or omitted, server chooses its own default. - resource (resource) => existing connection resource - lazy, profiler, result, substitutes, ... => see Dibi\Connection options
상속: implements Dibi\Driver, implements Dibi\ResultDriver, implements Dibi\Reflector, use trait Dibi\Strict
파일 보기 프로젝트 열기: dg/dibi

공개 메소드들

메소드 설명
__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.

메소드 상세

__construct() 공개 메소드

public __construct ( )

__destruct() 공개 메소드

Automatically frees the resources allocated for this result set.
public __destruct ( ) : void
리턴 void

applyLimit() 공개 메소드

Injects LIMIT/OFFSET to the SQL query.
public applyLimit ( &$sql, $limit, $offset ) : void
리턴 void

begin() 공개 메소드

Begins a transaction (if supported).
public begin ( $savepoint = NULL ) : void
리턴 void

commit() 공개 메소드

Commits statements in a transaction.
public commit ( $savepoint = NULL ) : void
리턴 void

connect() 공개 메소드

Connects to a database.
public connect ( array &$config ) : void
$config array
리턴 void

createResultDriver() 공개 메소드

Result set driver factory.
public createResultDriver ( $resource ) : Dibi\ResultDriver
리턴 Dibi\ResultDriver

disconnect() 공개 메소드

Disconnects from a database.
public disconnect ( ) : void
리턴 void

escape() 공개 메소드

사용 중단:
public escape ( $value, $type )

escapeBinary() 공개 메소드

public escapeBinary ( $value )

escapeBool() 공개 메소드

public escapeBool ( $value )

escapeDate() 공개 메소드

public escapeDate ( $value )

escapeDateTime() 공개 메소드

public escapeDateTime ( $value )

escapeIdentifier() 공개 메소드

public escapeIdentifier ( $value )

escapeLike() 공개 메소드

Encodes string for use in a LIKE statement.
public escapeLike ( $value, $pos ) : string
리턴 string

escapeText() 공개 메소드

Encodes data for use in a SQL statement.
public escapeText ( $value ) : string
리턴 string

fetch() 공개 메소드

Fetches the row at current position and moves the internal cursor to the next position.
public fetch ( $assoc ) : array
리턴 array array on success, nonarray if no next record

free() 공개 메소드

Frees the resources allocated for this result set.
public free ( ) : void
리턴 void

getAffectedRows() 공개 메소드

Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.
public getAffectedRows ( ) : integer | FALSE
리턴 integer | FALSE number of rows or FALSE on error

getColumns() 공개 메소드

Returns metadata for all columns in a table.
public getColumns ( $table ) : array
리턴 array

getConstraints() 공개 메소드

Returns list of constraints in given table.
public getConstraints ( $table ) : array
리턴 array

getForeignKeys() 공개 메소드

Returns metadata for all foreign keys in a table.
public getForeignKeys ( $table ) : array
리턴 array

getFunctions() 공개 메소드

Returns list of user defined functions (UDF).
public getFunctions ( ) : array
리턴 array

getGenerators() 공개 메소드

Returns list of generators.
public getGenerators ( ) : array
리턴 array

getIndexes() 공개 메소드

Returns metadata for all indexes in a table (the constraints are included).
public getIndexes ( $table ) : array
리턴 array

getIndices() 공개 메소드

Returns list of indices in given table (the constraints are not listed).
public getIndices ( $table ) : array
리턴 array

getInsertId() 공개 메소드

Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.
public getInsertId ( $sequence ) : integer | FALSE
리턴 integer | FALSE int on success or FALSE on failure

getProcedures() 공개 메소드

Returns list of stored procedures.
public getProcedures ( ) : array
리턴 array

getProceduresMeta() 공개 메소드

Returns metadata from stored procedures and their input and output parameters.
public getProceduresMeta ( ) : array
리턴 array

getReflector() 공개 메소드

Returns the connection reflector.
public getReflector ( ) : Dibi\Reflector
리턴 Dibi\Reflector

getResource() 공개 메소드

Returns the connection resource.
public getResource ( ) : resource
리턴 resource

getResultColumns() 공개 메소드

Returns metadata for all columns in a result set.
public getResultColumns ( ) : array
리턴 array

getResultResource() 공개 메소드

Returns the result set resource.
public getResultResource ( ) : resource
리턴 resource

getRowCount() 공개 메소드

Returns the number of rows in a result set.
public getRowCount ( ) : integer
리턴 integer

getTables() 공개 메소드

Returns list of tables.
public getTables ( ) : array
리턴 array

getTriggers() 공개 메소드

(Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table)
public getTriggers ( $table = NULL ) : array
리턴 array

getTriggersMeta() 공개 메소드

(Only if user has permissions on ALTER TABLE, INSERT/UPDATE/DELETE record in table)
public getTriggersMeta ( $table = NULL ) : array
리턴 array

inTransaction() 공개 메소드

Is in transaction?
public inTransaction ( ) : boolean
리턴 boolean

query() 공개 메소드

Executes the SQL query.
public query ( $sql ) : Dibi\ResultDriver | null
리턴 Dibi\ResultDriver | null

rollback() 공개 메소드

Rollback changes in a transaction.
public rollback ( $savepoint = NULL ) : void
리턴 void

seek() 공개 메소드

Moves cursor position without fetching row.
public seek ( $row ) : boolean
리턴 boolean TRUE on success, FALSE if unable to seek to specified record

unescapeBinary() 공개 메소드

Decodes data from result set.
public unescapeBinary ( $value ) : string
리턴 string