Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 310 and 311] [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

   1  <?php
   2  /**
   3  * @version   v5.21.0  2021-02-27
   4  * @copyright (c) 2000-2013 John Lim (jlim#natsoft.com). All rights reserved.
   5  * @copyright (c) 2014      Damien Regad, Mark Newnham and the ADOdb community
   6  * Released under both BSD license and Lesser GPL library license.
   7  * Whenever there is any discrepancy between the two licenses,
   8  * the BSD license will take precedence.
   9  *
  10  * Set tabs to 4 for best viewing.
  11  *
  12  * Latest version is available at https://adodb.org/
  13  *
  14  * Informix 9 driver that supports SELECT FIRST
  15  *
  16  */
  17  
  18  // security - hide paths
  19  if (!defined('ADODB_DIR')) die();
  20  
  21  include_once(ADODB_DIR.'/drivers/adodb-informix72.inc.php');
  22  
  23  class ADODB_informix extends ADODB_informix72 {
  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  
  34  class ADORecordset_informix extends ADORecordset_informix72 {
  35  	 var $databaseType = "informix";
  36  }