]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/adodb/drivers/adodb-informix.inc.php
locking table specific for better databases
[SourceForge/phpwiki.git] / lib / WikiDB / adodb / drivers / adodb-informix.inc.php
1 <?php
2 /**
3 * @version 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 *
8 * Set tabs to 4 for best viewing.
9 *
10 * Latest version is available at http://php.weblogs.com
11 *
12 * Informix 9 driver that supports SELECT FIRST
13 *
14 */
15 include_once(ADODB_DIR.'/drivers/adodb-informix72.inc.php');
16
17 class ADODB_informix extends ADODB_informix72 {
18         var $databaseType = "informix";
19         var $hasTop = 'FIRST';
20         var $ansiOuter = true;
21 }
22
23 class ADORecordset_informix extends ADORecordset_informix72 {
24         var $databaseType = "informix";
25         function ADORecordset_informix($id,$mode=false)
26         {
27                 $this->ADORecordset_informix72($id,$mode);
28         }
29 }
30 ?>