|
| fetchAll ($style=null, $col=null) |
| Returns an array containing all of the result set rows.
|
|
| _bindParam ($parameter, &$variable, $type=null, $length=null, $options=null) |
| Binds a parameter to the specified variable name.
|
|
| bindColumn ($column, &$param, $type=null) |
| Bind a column of the statement result set to a PHP variable.
|
|
| bindValue ($parameter, $value, $type=null) |
| Binds a value to a parameter.
|
|
| closeCursor () |
| Closes the cursor, allowing the statement to be executed again.
|
|
| columnCount () |
| Returns the number of columns in the result set.
|
|
| errorCode () |
| Retrieves the error code, if any, associated with the last operation on the statement handle.
|
|
| errorInfo () |
| Retrieves an array of error information, if any, associated with the last operation on the statement handle.
|
|
| _execute (array $params=null) |
| Executes a prepared statement.
|
|
| fetch ($style=null, $cursor=null, $offset=null) |
| Fetches a row from the result set.
|
|
| getIterator () |
| Required by IteratorAggregate interface.
|
|
| fetchAll ($style=null, $col=null) |
| Returns an array containing all of the result set rows.
|
|
| fetchColumn ($col=0) |
| Returns a single column from the next row of a result set.
|
|
| fetchObject ($class= 'stdClass', array $config=array()) |
| Fetches the next row and returns it as an object.
|
|
| getAttribute ($key) |
| Retrieve a statement attribute.
|
|
| getColumnMeta ($column) |
| Returns metadata for a column in a result set.
|
|
| nextRowset () |
| Retrieves the next rowset (result set) for a SQL statement that has multiple result sets.
|
|
| rowCount () |
| Returns the number of rows affected by the execution of the last INSERT, DELETE, or UPDATE statement executed by this statement object.
|
|
| setAttribute ($key, $val) |
| Set a statement attribute.
|
|
| setFetchMode ($mode) |
| Set the default fetch mode for this statement.
|
|
| __construct ($adapter, $sql) |
| Constructor for a statement.
|
|
| bindColumn ($column, &$param, $type=null) |
| Bind a column of the statement result set to a PHP variable.
|
|
| bindParam ($parameter, &$variable, $type=null, $length=null, $options=null) |
| Binds a parameter to the specified variable name.
|
|
| bindValue ($parameter, $value, $type=null) |
| Binds a value to a parameter.
|
|
| execute (array $params=null) |
| Executes a prepared statement.
|
|
| fetchAll ($style=null, $col=null) |
| Returns an array containing all of the result set rows.
|
|
| fetchColumn ($col=0) |
| Returns a single column from the next row of a result set.
|
|
| fetchObject ($class= 'stdClass', array $config=array()) |
| Fetches the next row and returns it as an object.
|
|
| getAttribute ($key) |
| Retrieve a statement attribute.
|
|
| setAttribute ($key, $val) |
| Set a statement attribute.
|
|
| setFetchMode ($mode) |
| Set the default fetch mode for this statement.
|
|
| _fetchBound ($row) |
| Helper function to map retrieved row to bound column variables.
|
|
| getAdapter () |
| Gets the Zend_Db_Adapter_Abstract for this particular Zend_Db_Statement object.
|
|
| getDriverStatement () |
| Gets the resource or object setup by the _parse.
|
|