Property | Type | Description | |
---|---|---|---|
$_info | array | Table schema for parent Zend_Db_Table. | |
$_integrityCheck | array | Table integrity override. | |
$_table | Zend_Db_Table_Abstract | Table instance that created this select object |
Method | Description | |
---|---|---|
__construct ( Zend_Db_Table_Abstract $table ) | Class constructor | |
assemble ( ) : string | null | Performs a validation on the select query before passing back to the parent class. | |
from ( array | string | Zend_Db_Expr | Zend_Db_Table_Abstract $name, array | string | Zend_Db_Expr $cols = self::SQL_WILDCARD, string $schema = null ) : Zend_Db_Table_Select | Adds a FROM table and optional columns to the query. | |
getTable ( ) : Zend_Db_Table_Abstract | Return the table that created this select object | |
isReadOnly ( ) : boolean | Tests query to determine if expressions or aliases columns exist. | |
setIntegrityCheck ( $flag = true ) : Zend_Db_Select | Sets the integrity check flag. | |
setTable ( Zend_Db_Table_Abstract $table ) : Zend_Db_Select | Sets the primary table name and retrieves the table schema. |
public __construct ( Zend_Db_Table_Abstract $table ) | ||
$table | Zend_Db_Table_Abstract |
public from ( array | string | Zend_Db_Expr | Zend_Db_Table_Abstract $name, array | string | Zend_Db_Expr $cols = self::SQL_WILDCARD, string $schema = null ) : Zend_Db_Table_Select | ||
$name | array | string | Zend_Db_Expr | Zend_Db_Table_Abstract | The table name or an associative array relating table name to correlation name. |
$cols | array | string | Zend_Db_Expr | The columns to select from this table. |
$schema | string | The schema name to specify, if any. |
return | Zend_Db_Table_Select | This Zend_Db_Table_Select object. |
public getTable ( ) : Zend_Db_Table_Abstract | ||
return | Zend_Db_Table_Abstract |
public isReadOnly ( ) : boolean | ||
return | boolean |
public setIntegrityCheck ( $flag = true ) : Zend_Db_Select | ||
return | Zend_Db_Select | This Zend_Db_Select object. |
public setTable ( Zend_Db_Table_Abstract $table ) : Zend_Db_Select | ||
$table | Zend_Db_Table_Abstract | |
return | Zend_Db_Select | This Zend_Db_Select object. |
protected array $_info | ||
return | array |
protected array $_integrityCheck | ||
return | array |