Located in /Db/Adapter/Firebird.php (line 51)
Zend_Db_Adapter_Abstract | --ZendX_Db_Adapter_Firebird
Specifies whether the adapter automatically quotes identifiers.
If true, most SQL generated by Zend_Db classes applies identifier quoting automatically. If false, developer must quote identifiers themselves by calling quoteIdentifier().
Keys are UPPERCASE SQL datatypes or the constants Zend_Db::INT_TYPE, Zend_Db::BIGINT_TYPE, or Zend_Db::FLOAT_TYPE.
Values are:
The transaction resource.
Force the connection to close.
Returns the column descriptions for a table.
The return value is an associative array keyed by the column name, as returned by the RDBMS.
The value of each array element is an associative array with the following keys:
SCHEMA_NAME => string; name of database or schema TABLE_NAME => string; COLUMN_NAME => string; column name COLUMN_POSITION => number; ordinal position of column in table DATA_TYPE => string; SQL datatype name of column DEFAULT => string; default expression of column, null if none NULLABLE => boolean; true if column can have nulls LENGTH => number; length of CHAR/VARCHAR SCALE => number; scale of NUMERIC/DECIMAL PRECISION => number; precision of NUMERIC/DECIMAL UNSIGNED => boolean; unsigned property of an integer type PRIMARY => boolean; true if column is part of the primary key PRIMARY_POSITION => integer; position of column in primary key IDENTITY => integer; true if column is auto-generated with unique values
Retrieve server version in PHP style
Return the status of current transaction.
Test if a connection is active
Gets the last ID generated automatically by an IDENTITY/AUTOINCREMENT column.
As a convention, on RDBMS brands that support sequences (e.g. Firebird, Oracle, PostgreSQL, DB2), this method forms the name of a sequence from the arguments and returns the last id generated by that sequence. On RDBMS brands that support IDENTITY/AUTOINCREMENT columns, this method returns the last value generated for such a column, and the table name argument is disregarded.
Firebird does not support IDENTITY columns, so if the sequence is not specified, this method returns null.
Return the most recent value from the specified sequence in the database.
This is supported only on RDBMS brands that support sequences (e.g. Firebird, Oracle, PostgreSQL, DB2). Other RDBMS brands return null.
Adds an adapter-specific LIMIT clause to the SELECT statement.
Returns a list of the tables in the database.
Generate a new value from the specified sequence in the database, and return it.
This is supported only on RDBMS brands that support sequences (e.g. Firebird, Oracle, PostgreSQL, DB2). Other RDBMS brands return null.
Prepare a statement and return a Statement resource.
Quote a table identifier and alias.
Set the fetch mode.
Check if the adapter supports real SQL parameters.
Begin a transaction.
Commit a transaction.
Creates a connection to the database.
Format a connection string to connect to database
Quote a raw string.
Roll-back a transaction.
Documentation generated on Tue, 12 May 2009 11:49:35 -0700 by phpDocumentor 1.4.2