Db/Table/Select.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Db  
Subpackage
Select  
Version
$Id$  

\Zend_Db_Table_Select

Package: Zend_Db\Table
Class for SQL SELECT query manipulation for the Zend_Db_Table component.
Parent(s)
\Zend_Db_Select
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedarray $_info
Table schema for parent Zend_Db_Table.
Details
Type
array
>VPropertyprotectedarray $_integrityCheck = true
Table integrity override.
Default valuetrueDetails
Type
array
>VPropertyprotected\Zend_Db_Table_Abstract $_table
Table instance that created this select object

Methods

methodpublic__construct( $table) : void

Class constructor

Parameters
NameTypeDescription
$table
methodpublicassemble() : string | null

Performs a validation on the select query before passing back to the parent class.

Ensures that only columns from the primary Zend_Db_Table are returned in the result.
Returns
TypeDescription
string | nullThis object as a SELECT string (or null if a string cannot be produced)
methodpublicfrom(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.

The table name can be expressed
Parameters
NameTypeDescription
$namearray | string | \Zend_Db_Expr | \Zend_Db_Table_Abstract

The table name or an associative array relating table name to correlation name.

$colsarray | string | \Zend_Db_Expr

The columns to select from this table.

$schemastring

The schema name to specify, if any.

Returns
TypeDescription
\Zend_Db_Table_SelectThis Zend_Db_Table_Select object.
methodpublicgetTable() : \Zend_Db_Table_Abstract

Return the table that created this select object

Returns
TypeDescription
\Zend_Db_Table_Abstract
methodpublicisReadOnly() : boolean

Tests query to determine if expressions or aliases columns exist.

Returns
TypeDescription
boolean
methodpublicsetIntegrityCheck( $flag = true) : \Zend_Db_Select

Sets the integrity check flag.

Setting this flag to false skips the checks for table joins, allowing 'hybrid' table rows to be created.
Parameters
NameTypeDescription
$flag
Returns
TypeDescription
\Zend_Db_SelectThis Zend_Db_Select object.
methodpublicsetTable( $table) : \Zend_Db_Select

Sets the primary table name and retrieves the table schema.

Parameters
NameTypeDescription
$table
Returns
TypeDescription
\Zend_Db_SelectThis Zend_Db_Select object.
Documentation was generated by phpDocumentor 2.2.0 .