Class Zend_Db_Statement
Abstract class to emulate a PDOStatement for native database adapters.
- Zend_Db_Statement implements Zend_Db_Statement_Interface
Direct known subclasses
Zend_Db_Statement_Db2, Zend_Db_Statement_Mysqli, Zend_Db_Statement_Oracle, Zend_Db_Statement_Pdo, Zend_Db_Statement_Sqlsrv
Abstract
Package: Zend\Db\Statement
Category: Zend
Copyright: Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
License: New BSD License
Located at Zend/Db/Statement.php
Package: Zend\Db\Statement
Category: Zend
Copyright: Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
License: New BSD License
Located at Zend/Db/Statement.php
public
|
|
protected
|
|
protected
|
|
protected
string
|
#
_stripQuoted( string $sql )
Remove parts of a SQL string that contain quoted strings of values or identifiers. |
public
boolean
|
#
bindColumn( string $column, mixed & $param, mixed $type = null )
Bind a column of the statement result set to a PHP variable. |
public
boolean
|
|
public
boolean
|
|
public
boolean
|
|
public
array
|
|
public
string
|
|
public
mixed
|
#
fetchObject( string $class = 'stdClass', array $config = array() )
Fetches the next row and returns it as an object. |
public
mixed
|
|
public
boolean
|
|
public
boolean
|
|
public
boolean
|
|
public
|
|
public
unknown_type
|
closeCursor(),
columnCount(),
errorCode(),
errorInfo(),
fetch(),
nextRowset(),
rowCount()
|
protected
resource|object
|
$_stmt | null |
#
The driver level statement object/resource |
protected
|
$_adapter | null |
|
protected
integer
|
$_fetchMode |
|
#
The current fetch mode. |
protected
array
|
$_attribute | array() |
#
Attributes. |
protected
array
|
$_bindColumn | array() |
#
Column result bindings. |
protected
array
|
$_bindParam | array() |
#
Query parameter bindings; covers bindParam() and bindValue(). |
protected
array
|
$_sqlSplit | array() |
#
SQL string split into an array at placeholders. |
protected
array
|
$_sqlParam | array() |
#
Parameter placeholders in the SQL string by position in the split array. |
protected
|
$_queryId | null |