TYPO3 CMS  TYPO3_6-2
adodb-informix.inc.php
Go to the documentation of this file.
1 <?php
16 // security - hide paths
17 if (!defined('ADODB_DIR')) die();
18 
19 include_once(ADODB_DIR.'/drivers/adodb-informix72.inc.php');
20 
22  var $databaseType = "informix";
23  var $hasTop = 'FIRST';
24  var $ansiOuter = true;
25 
26  function IfNull( $field, $ifNull )
27  {
28  return " NVL($field, $ifNull) "; // if Informix 9.X or 10.X
29  }
30 }
31 
33  var $databaseType = "informix";
34 
35  function ADORecordset_informix($id,$mode=false)
36  {
37  $this->ADORecordset_informix72($id,$mode);
38  }
39 }
ADORecordset_informix($id, $mode=false)
die
Definition: index.php:6
IfNull( $field, $ifNull)