Zend Framework
1.12
|
Public Member Functions | |
__construct ($adapter) | |
Construct the data server class. | |
listTables () | |
Returns a list of the tables in the database. | |
describeTable ($tableName, $schemaName=null) | |
IDS catalog lookup for describe table. | |
limit ($sql, $count, $offset=0) | |
Adds an IDS-specific LIMIT clause to the SELECT statement. | |
lastSequenceId ($sequenceName) | |
IDS-specific last sequence id. | |
nextSequenceId ($sequenceName) | |
IDS-specific sequence id value. | |
Protected Member Functions | |
_getDataType ($typeNo) | |
Map number representation of a data type to a string. | |
_getPrimaryInfo ($tabid) | |
Helper method to retrieve primary key column and column location. | |
Protected Attributes | |
$_adapter = null | |
__construct | ( | $adapter | ) |
Construct the data server class.
It will be used to generate non-generic SQL for a particular data server
Zend_Db_Adapter_Abstract | $adapter |
|
protected |
Map number representation of a data type to a string.
int | $typeNo |
|
protected |
Helper method to retrieve primary key column and column location.
int | $tabid |
describeTable | ( | $tableName, | |
$schemaName = null |
|||
) |
IDS catalog lookup for describe table.
string | $tableName | |
string | $schemaName | OPTIONAL |
The ordering of columns is defined by the query so we can map to variables to improve readability
lastSequenceId | ( | $sequenceName | ) |
IDS-specific last sequence id.
string | $sequenceName |
limit | ( | $sql, | |
$count, | |||
$offset = 0 |
|||
) |
Adds an IDS-specific LIMIT clause to the SELECT statement.
string | $sql | |
integer | $count | |
integer | $offset | OPTIONAL |
Zend_Db_Adapter_Exception |
listTables | ( | ) |
Returns a list of the tables in the database.
nextSequenceId | ( | $sequenceName | ) |
IDS-specific sequence id value.
string | $sequenceName |
|
protected |