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