

Public Member Functions | |
| ADODB_firebird () | |
| ServerInfo () | |
| & | SelectLimit ($sql, $nrows=-1, $offset=-1, $inputarr=false, $secs=0) |
Public Attributes | |
| $databaseType = "firebird" | |
| $dialect = 3 | |
| $sysTimeStamp = "CURRENT_TIMESTAMP" | |
| name of function that returns the current date | |
Definition at line 18 of file adodb-firebird.inc.php.
| ADODB_firebird.ADODB_firebird | ( | ) |
Definition at line 24 of file adodb-firebird.inc.php.
References ADODB_ibase.ADODB_ibase().

| ADODB_firebird.ServerInfo | ( | ) |
Get server version info...
Reimplemented from ADODB_ibase.
Definition at line 29 of file adodb-firebird.inc.php.
References $arr, $s, and ADOConnection._findvers().

| & ADODB_firebird.SelectLimit | ( | $ | sql, | |
| $ | nrows = -1, |
|||
| $ | offset = -1, |
|||
| $ | inputarr = false, |
|||
| $ | secs2cache = 0 | |||
| ) |
Will select, getting rows from $offset (1-based), for $nrows. This simulates the MySQL "select * from table limit $offset,$nrows" , and the PostgreSQL "select * from table limit $nrows offset $offset". Note that MySQL and PostgreSQL parameter ordering is the opposite of the other. eg. SelectLimit('select * from table',3); will return rows 1 to 3 (1-based) SelectLimit('select * from table',3,2); will return rows 3 to 5 (1-based)
Uses SELECT TOP for Microsoft databases (when $this->hasTop is set) BUG: Currently SelectLimit fails with $sql with LIMIT or TOP clause already set
| sql | ||
| [offset] | is the row to start calculations from (1-based) | |
| [nrows] | is the number of rows to get | |
| [inputarr] | array of bind variables | |
| [secs2cache] | is a private parameter only used by jlim |
Reimplemented from ADOConnection.
Definition at line 47 of file adodb-firebird.inc.php.
References $rs, $sql, ADOConnection.CacheExecute(), and ADOConnection.Execute().

| ADODB_firebird.$databaseType = "firebird" |
| ADODB_firebird.$dialect = 3 |
| ADODB_firebird.$sysTimeStamp = "CURRENT_TIMESTAMP" |
name of function that returns the current date
Reimplemented from ADODB_ibase.
Definition at line 22 of file adodb-firebird.inc.php.