Method |
Description |
|
__clone ( ) |
|
|
__construct ( PdoDataSource $source ) |
|
|
assign ( $column, $value ) : PdoDataSet |
|
|
between ( $column, $lhs, $rhs ) : PdoDataSet |
|
|
count ( ) |
|
|
current ( ) |
|
|
distinct ( ) : PdoDataSet |
|
|
equal ( $lhs, $rhs ) : PdoDataSet |
|
|
exists ( ) |
|
|
first ( ) : object |
Return the first item in the PdoDataSet or Null if none exist |
|
from ( $table ) : PdoDataSet |
|
|
greaterThan ( $lhs, $rhs ) : PdoDataSet |
|
|
greaterThanOrEqualTo ( $lhs, $rhs ) : PdoDataSet |
|
|
groupBy ( $clause ) : PdoDataSet |
|
|
in ( $lhs, $rhs ) : PdoDataSet |
|
|
innerJoin ( $table, $tablePrimaryKey, $fromTableForeignKey ) : PdoDataSet |
|
|
isEmpty ( ) |
|
|
isNotNull ( $lhs ) : PdoDataSet |
|
|
isNull ( $lhs ) : PdoDataSet |
|
|
key ( ) |
|
|
leftOuterJoin ( $table, $tablePrimaryKey, $fromTableForeignKey ) : PdoDataSet |
|
|
lessThan ( $lhs, $rhs ) : PdoDataSet |
|
|
lessThanOrEqualTo ( $lhs, $rhs ) : PdoDataSet |
|
|
like ( $lhs, $rhs ) : PdoDataSet |
|
|
limit ( $size ) : PdoDataSet |
|
|
next ( ) |
|
|
notEqual ( $lhs, $rhs ) : PdoDataSet |
|
|
notLike ( $lhs, $rhs ) : PdoDataSet |
|
|
offset ( $offset ) : PdoDataSet |
|
|
offsetExists ( $index ) |
*
The following methods are in accordance with the ArrayAccess interface |
|
offsetGet ( $index ) |
|
|
offsetSet ( $index, $value ) |
|
|
offsetUnset ( $index ) |
|
|
orderBy ( $clause ) : PdoDataSet |
|
|
range ( $start, $finish ) : PdoDataSet |
|
|
rewind ( ) |
*
The following methods are in accordance with the Iterator interface |
|
selectAs ( $select, $as ) : PdoDataSet |
|
|
toArray ( ) : array |
Return the results as an array. |
|
toSql ( ) : string |
Return the SQL representation of this PdoDataSet |
|
useAssignmentsAsConditions ( $bool ) : PdoDataSet |
|
|
valid ( ) |
|
|
where ( $lhs, $rhs, $operator ) : PdoDataSet |
|
|