[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/lib/adodb/drivers/ -> adodb-mssqlpo.inc.php (source)

   1  <?php
   2  /**
   3  * @version   v5.20.3  01-Jan-2016
   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 http://php.weblogs.com
  13  *
  14  *  Portable MSSQL Driver that supports || instead of +
  15  *
  16  */
  17  
  18  // security - hide paths
  19  if (!defined('ADODB_DIR')) die();
  20  
  21  
  22  /*
  23      The big difference between mssqlpo and it's parent mssql is that mssqlpo supports
  24      the more standard || string concatenation operator.
  25  */
  26  
  27  include_once(ADODB_DIR.'/drivers/adodb-mssql.inc.php');
  28  
  29  class ADODB_mssqlpo extends ADODB_mssql {
  30      var $databaseType = "mssqlpo";
  31      var $concat_operator = '||';
  32  
  33  	function PrepareSP($sql, $param = true)
  34      {
  35          if (!$this->_has_mssql_init) {
  36              ADOConnection::outp( "PrepareSP: mssql_init only available since PHP 4.1.0");
  37              return $sql;
  38          }
  39          if (is_string($sql)) $sql = str_replace('||','+',$sql);
  40          $stmt = mssql_init($sql,$this->_connectionID);
  41          if (!$stmt)  return $sql;
  42          return array($sql,$stmt);
  43      }
  44  
  45  	function _query($sql,$inputarr=false)
  46      {
  47          if (is_string($sql)) $sql = str_replace('||','+',$sql);
  48          return ADODB_mssql::_query($sql,$inputarr);
  49      }
  50  }
  51  
  52  class ADORecordset_mssqlpo extends ADORecordset_mssql {
  53      var $databaseType = "mssqlpo";
  54  	function __construct($id,$mode=false)
  55      {
  56          parent::__construct($id,$mode);
  57      }
  58  }


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1