Public Member Functions | |
_prepare ($sql) | |
close () | |
closeCursor () | |
columnCount () | |
errorCode () | |
errorInfo () | |
_execute (array $params=null) | |
fetch ($style=null, $cursor=null, $offset=null) | |
nextRowset () | |
rowCount () | |
Protected Member Functions | |
_bindParam ($parameter, &$variable, $type=null, $length=null, $options=null) | |
Protected Attributes | |
$_stmtPrepared = null | |
$_stmtResult = null | |
$_stmtRowCount = 0 | |
$_stmtColumnCount = 0 | |
$_keys = array() | |
$_values = array() | |
$_meta = null |
Definition at line 37 of file Firebird.php.
_bindParam | ( | $ | parameter, |
&$ | variable, | ||
$ | type = null , |
||
$ | length = null , |
||
$ | options = null |
||
) | [protected] |
Binds a parameter to the specified variable name.
mixed | $parameter | Name the parameter, either integer or string. |
mixed | $variable | Reference to PHP variable containing the value. |
mixed | $type | OPTIONAL Datatype of SQL parameter. |
mixed | $length | OPTIONAL Length of SQL parameter. |
mixed | $options | OPTIONAL Other options. |
ZendX_Db_Statement_Firebird_Exception |
Definition at line 124 of file Firebird.php.
_execute | ( | array $ | params = null ) |
Executes a prepared statement.
array | $params | OPTIONAL Values to bind to parameter placeholders. |
ZendX_Db_Statement_Firebird_Exception |
Definition at line 211 of file Firebird.php.
_prepare | ( | $ | sql ) |
string | $sql |
ZendX_Db_Statement_Firebird_Exception |
Reimplemented from Zend_Db_Statement.
Definition at line 92 of file Firebird.php.
close | ( | ) |
closeCursor | ( | ) |
Closes the cursor, allowing the statement to be executed again.
Implements Zend_Db_Statement_Interface.
Definition at line 154 of file Firebird.php.
columnCount | ( | ) |
Returns the number of columns in the result set. Returns null if the statement has no result set metadata.
Implements Zend_Db_Statement_Interface.
Definition at line 168 of file Firebird.php.
errorCode | ( | ) |
Retrieves the error code, if any, associated with the last operation on the statement handle.
Implements Zend_Db_Statement_Interface.
Definition at line 179 of file Firebird.php.
errorInfo | ( | ) |
Retrieves an array of error information, if any, associated with the last operation on the statement handle.
Implements Zend_Db_Statement_Interface.
Definition at line 193 of file Firebird.php.
fetch | ( | $ | style = null , |
$ | cursor = null , |
||
$ | offset = null |
||
) |
Fetches a row from the result set.
int | $style | OPTIONAL Fetch mode for this fetch operation. |
int | $cursor | OPTIONAL Absolute, relative, or other. |
int | $offset | OPTIONAL Number for absolute or relative cursors. |
Zend_Db_Statement_Exception |
Implements Zend_Db_Statement_Interface.
Definition at line 292 of file Firebird.php.
nextRowset | ( | ) |
Retrieves the next rowset (result set) for a SQL statement that has multiple result sets. An example is a stored procedure that returns the results of multiple queries.
ZendX_Db_Statement_Firebird_Exception |
Implements Zend_Db_Statement_Interface.
Definition at line 347 of file Firebird.php.
rowCount | ( | ) |
Returns the number of rows affected by the execution of the last INSERT, DELETE, or UPDATE statement executed by this statement object.
Zend_Db_Statement_Exception |
Implements Zend_Db_Statement_Interface.
Definition at line 364 of file Firebird.php.