]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/adodb/drivers/adodb-firebird.inc.php
extra_empty_lines
[SourceForge/phpwiki.git] / lib / WikiDB / adodb / drivers / adodb-firebird.inc.php
1 <?php
2 /*
3 V4.22 15 Apr 2004  (c) 2000-2004 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.
8
9   Latest version is available at http://php.weblogs.com/
10
11 */
12
13 include_once(ADODB_DIR."/drivers/adodb-ibase.inc.php");
14
15 class ADODB_firebird extends ADODB_ibase {
16     var $databaseType = "firebird";
17     function ADODB_firebird()
18     {
19         $this->ADODB_ibase();
20     }
21
22     function ServerInfo()
23     {
24         $arr['dialect'] = $this->dialect;
25         switch($arr['dialect']) {
26         case '':
27         case '1': $s = 'Firebird Dialect 1'; break;
28         case '2': $s = 'Firebird Dialect 2'; break;
29         default:
30         case '3': $s = 'Firebird Dialect 3'; break;
31         }
32         $arr['version'] = ADOConnection::_findvers($s);
33         $arr['description'] = $s;
34         return $arr;
35     }
36
37     // Note that Interbase 6.5 uses this ROWS instead - don't you love forking wars!
38     //          SELECT col1, col2 FROM table ROWS 5 -- get 5 rows
39     //          SELECT col1, col2 FROM TABLE ORDER BY col1 ROWS 3 TO 7 -- first 5 skip 2
40     function &SelectLimit($sql,$nrows=-1,$offset=-1,$inputarr=false, $secs=0)
41     {
42         $str = 'SELECT ';
43         if ($nrows >= 0) $str .= "FIRST $nrows ";
44         $str .=($offset>=0) ? "SKIP $offset " : '';
45
46         $sql = preg_replace('/^[ \t]*select/i',$str,$sql);
47         if ($secs)
48             $rs =& $this->CacheExecute($secs,$sql,$inputarr);
49         else
50             $rs =& $this->Execute($sql,$inputarr);
51
52         return $rs;
53     }
54
55 };
56
57 class  ADORecordSet_firebird extends ADORecordSet_ibase {
58
59     var $databaseType = "firebird";
60
61     function ADORecordSet_firebird($id,$mode=false)
62     {
63         $this->ADORecordSet_ibase($id,$mode);
64     }
65 }
66 ?>