3 V4.92a 29 Aug 2006 (c) 2000-2006 John Lim (jlim#natsoft.com.my). All rights reserved.
4 Released under both BSD license and Lesser GPL library license.
5 Whenever there is any discrepancy between the two licenses,
6 the BSD license will take precedence.
7 Set tabs to 4 for best viewing.
9 Latest version is available at http://adodb.sourceforge.net
13 // security - hide paths
14 if (!defined('ADODB_DIR')) die();
16 include_once(ADODB_DIR
."/drivers/adodb-ibase.inc.php");
18 class ADODB_firebird
extends ADODB_ibase
{
19 var $databaseType = "firebird";
22 var $sysTimeStamp = "CURRENT_TIMESTAMP"; //"cast('NOW' as timestamp)";
24 function ADODB_firebird()
31 $arr['dialect'] = $this->dialect
;
32 switch($arr['dialect']) {
34 case '1': $s = 'Firebird Dialect 1'; break;
35 case '2': $s = 'Firebird Dialect 2'; break;
37 case '3': $s = 'Firebird Dialect 3'; break;
39 $arr['version'] = ADOConnection
::_findvers($s);
40 $arr['description'] = $s;
44 // Note that Interbase 6.5 uses this ROWS instead - don't you love forking wars!
45 // SELECT col1, col2 FROM table ROWS 5 -- get 5 rows
46 // SELECT col1, col2 FROM TABLE ORDER BY col1 ROWS 3 TO 7 -- first 5 skip 2
47 function &SelectLimit($sql,$nrows=-1,$offset=-1,$inputarr=false, $secs=0)
49 $nrows = (integer) $nrows;
50 $offset = (integer) $offset;
52 if ($nrows >= 0) $str .= "FIRST $nrows ";
53 $str .=($offset>=0) ?
"SKIP $offset " : '';
55 $sql = preg_replace('/^[ \t]*select/i',$str,$sql);
57 $rs =& $this->CacheExecute($secs,$sql,$inputarr);
59 $rs =& $this->Execute($sql,$inputarr);
68 class ADORecordSet_firebird
extends ADORecordSet_ibase
{
70 var $databaseType = "firebird";
72 function ADORecordSet_firebird($id,$mode=false)
74 $this->ADORecordSet_ibase($id,$mode);