| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 | 
							- <?php
 
- /**
 
-  * CodeIgniter
 
-  *
 
-  * An open source application development framework for PHP
 
-  *
 
-  * This content is released under the MIT License (MIT)
 
-  *
 
-  * Copyright (c) 2014 - 2017, British Columbia Institute of Technology
 
-  *
 
-  * Permission is hereby granted, free of charge, to any person obtaining a copy
 
-  * of this software and associated documentation files (the "Software"), to deal
 
-  * in the Software without restriction, including without limitation the rights
 
-  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
-  * copies of the Software, and to permit persons to whom the Software is
 
-  * furnished to do so, subject to the following conditions:
 
-  *
 
-  * The above copyright notice and this permission notice shall be included in
 
-  * all copies or substantial portions of the Software.
 
-  *
 
-  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
-  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
-  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
-  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
-  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
-  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
-  * THE SOFTWARE.
 
-  *
 
-  * @package	CodeIgniter
 
-  * @author	EllisLab Dev Team
 
-  * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
 
-  * @copyright	Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
 
-  * @license	http://opensource.org/licenses/MIT	MIT License
 
-  * @link	https://codeigniter.com
 
-  * @since	Version 1.3.0
 
-  * @filesource
 
-  */
 
- defined('BASEPATH') OR exit('No direct script access allowed');
 
- /**
 
-  * ODBC Database Adapter Class
 
-  *
 
-  * Note: _DB is an extender class that the app controller
 
-  * creates dynamically based on whether the query builder
 
-  * class is being used or not.
 
-  *
 
-  * @package		CodeIgniter
 
-  * @subpackage	Drivers
 
-  * @category	Database
 
-  * @author		EllisLab Dev Team
 
-  * @link		https://codeigniter.com/user_guide/database/
 
-  */
 
- class CI_DB_odbc_driver extends CI_DB_driver {
 
- 	/**
 
- 	 * Database driver
 
- 	 *
 
- 	 * @var	string
 
- 	 */
 
- 	public $dbdriver = 'odbc';
 
- 	/**
 
- 	 * Database schema
 
- 	 *
 
- 	 * @var	string
 
- 	 */
 
- 	public $schema = 'public';
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Identifier escape character
 
- 	 *
 
- 	 * Must be empty for ODBC.
 
- 	 *
 
- 	 * @var	string
 
- 	 */
 
- 	protected $_escape_char = '';
 
- 	/**
 
- 	 * ESCAPE statement string
 
- 	 *
 
- 	 * @var	string
 
- 	 */
 
- 	protected $_like_escape_str = " {escape '%s'} ";
 
- 	/**
 
- 	 * ORDER BY random keyword
 
- 	 *
 
- 	 * @var	array
 
- 	 */
 
- 	protected $_random_keyword = array('RND()', 'RND(%d)');
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * ODBC result ID resource returned from odbc_prepare()
 
- 	 *
 
- 	 * @var	resource
 
- 	 */
 
- 	private $odbc_result;
 
- 	/**
 
- 	 * Values to use with odbc_execute() for prepared statements
 
- 	 *
 
- 	 * @var	array
 
- 	 */
 
- 	private $binds = array();
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Class constructor
 
- 	 *
 
- 	 * @param	array	$params
 
- 	 * @return	void
 
- 	 */
 
- 	public function __construct($params)
 
- 	{
 
- 		parent::__construct($params);
 
- 		// Legacy support for DSN in the hostname field
 
- 		if (empty($this->dsn))
 
- 		{
 
- 			$this->dsn = $this->hostname;
 
- 		}
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Non-persistent database connection
 
- 	 *
 
- 	 * @param	bool	$persistent
 
- 	 * @return	resource
 
- 	 */
 
- 	public function db_connect($persistent = FALSE)
 
- 	{
 
- 		return ($persistent === TRUE)
 
- 			? odbc_pconnect($this->dsn, $this->username, $this->password)
 
- 			: odbc_connect($this->dsn, $this->username, $this->password);
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Compile Bindings
 
- 	 *
 
- 	 * @param	string	$sql	SQL statement
 
- 	 * @param	array	$binds	An array of values to bind
 
- 	 * @return	string
 
- 	 */
 
- 	public function compile_binds($sql, $binds)
 
- 	{
 
- 		if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
 
- 		{
 
- 			return $sql;
 
- 		}
 
- 		elseif ( ! is_array($binds))
 
- 		{
 
- 			$binds = array($binds);
 
- 			$bind_count = 1;
 
- 		}
 
- 		else
 
- 		{
 
- 			// Make sure we're using numeric keys
 
- 			$binds = array_values($binds);
 
- 			$bind_count = count($binds);
 
- 		}
 
- 		// We'll need the marker length later
 
- 		$ml = strlen($this->bind_marker);
 
- 		// Make sure not to replace a chunk inside a string that happens to match the bind marker
 
- 		if ($c = preg_match_all("/'[^']*'|\"[^\"]*\"/i", $sql, $matches))
 
- 		{
 
- 			$c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i',
 
- 				str_replace($matches[0],
 
- 					str_replace($this->bind_marker, str_repeat(' ', $ml), $matches[0]),
 
- 					$sql, $c),
 
- 				$matches, PREG_OFFSET_CAPTURE);
 
- 			// Bind values' count must match the count of markers in the query
 
- 			if ($bind_count !== $c)
 
- 			{
 
- 				return $sql;
 
- 			}
 
- 		}
 
- 		elseif (($c = preg_match_all('/'.preg_quote($this->bind_marker, '/').'/i', $sql, $matches, PREG_OFFSET_CAPTURE)) !== $bind_count)
 
- 		{
 
- 			return $sql;
 
- 		}
 
- 		if ($this->bind_marker !== '?')
 
- 		{
 
- 			do
 
- 			{
 
- 				$c--;
 
- 				$sql = substr_replace($sql, '?', $matches[0][$c][1], $ml);
 
- 			}
 
- 			while ($c !== 0);
 
- 		}
 
- 		if (FALSE !== ($this->odbc_result = odbc_prepare($this->conn_id, $sql)))
 
- 		{
 
- 			$this->binds = array_values($binds);
 
- 		}
 
- 		return $sql;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Execute the query
 
- 	 *
 
- 	 * @param	string	$sql	an SQL query
 
- 	 * @return	resource
 
- 	 */
 
- 	protected function _execute($sql)
 
- 	{
 
- 		if ( ! isset($this->odbc_result))
 
- 		{
 
- 			return odbc_exec($this->conn_id, $sql);
 
- 		}
 
- 		elseif ($this->odbc_result === FALSE)
 
- 		{
 
- 			return FALSE;
 
- 		}
 
- 		if (TRUE === ($success = odbc_execute($this->odbc_result, $this->binds)))
 
- 		{
 
- 			// For queries that return result sets, return the result_id resource on success
 
- 			$this->is_write_type($sql) OR $success = $this->odbc_result;
 
- 		}
 
- 		$this->odbc_result = NULL;
 
- 		$this->binds       = array();
 
- 		return $success;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Begin Transaction
 
- 	 *
 
- 	 * @return	bool
 
- 	 */
 
- 	protected function _trans_begin()
 
- 	{
 
- 		return odbc_autocommit($this->conn_id, FALSE);
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Commit Transaction
 
- 	 *
 
- 	 * @return	bool
 
- 	 */
 
- 	protected function _trans_commit()
 
- 	{
 
- 		if (odbc_commit($this->conn_id))
 
- 		{
 
- 			odbc_autocommit($this->conn_id, TRUE);
 
- 			return TRUE;
 
- 		}
 
- 		return FALSE;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Rollback Transaction
 
- 	 *
 
- 	 * @return	bool
 
- 	 */
 
- 	protected function _trans_rollback()
 
- 	{
 
- 		if (odbc_rollback($this->conn_id))
 
- 		{
 
- 			odbc_autocommit($this->conn_id, TRUE);
 
- 			return TRUE;
 
- 		}
 
- 		return FALSE;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Determines if a query is a "write" type.
 
- 	 *
 
- 	 * @param	string	An SQL query string
 
- 	 * @return	bool
 
- 	 */
 
- 	public function is_write_type($sql)
 
- 	{
 
- 		if (preg_match('#^(INSERT|UPDATE).*RETURNING\s.+(\,\s?.+)*$#is', $sql))
 
- 		{
 
- 			return FALSE;
 
- 		}
 
- 		return parent::is_write_type($sql);
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Platform-dependent string escape
 
- 	 *
 
- 	 * @param	string
 
- 	 * @return	string
 
- 	 */
 
- 	protected function _escape_str($str)
 
- 	{
 
- 		$this->display_error('db_unsupported_feature');
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Affected Rows
 
- 	 *
 
- 	 * @return	int
 
- 	 */
 
- 	public function affected_rows()
 
- 	{
 
- 		return odbc_num_rows($this->result_id);
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Insert ID
 
- 	 *
 
- 	 * @return	bool
 
- 	 */
 
- 	public function insert_id()
 
- 	{
 
- 		return ($this->db_debug) ? $this->display_error('db_unsupported_feature') : FALSE;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Show table query
 
- 	 *
 
- 	 * Generates a platform-specific query string so that the table names can be fetched
 
- 	 *
 
- 	 * @param	bool	$prefix_limit
 
- 	 * @return	string
 
- 	 */
 
- 	protected function _list_tables($prefix_limit = FALSE)
 
- 	{
 
- 		$sql = "SELECT table_name FROM information_schema.tables WHERE table_schema = '".$this->schema."'";
 
- 		if ($prefix_limit !== FALSE && $this->dbprefix !== '')
 
- 		{
 
- 			return $sql." AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' "
 
- 				.sprintf($this->_like_escape_str, $this->_like_escape_chr);
 
- 		}
 
- 		return $sql;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Show column query
 
- 	 *
 
- 	 * Generates a platform-specific query string so that the column names can be fetched
 
- 	 *
 
- 	 * @param	string	$table
 
- 	 * @return	string
 
- 	 */
 
- 	protected function _list_columns($table = '')
 
- 	{
 
- 		return 'SHOW COLUMNS FROM '.$table;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Field data query
 
- 	 *
 
- 	 * Generates a platform-specific query so that the column data can be retrieved
 
- 	 *
 
- 	 * @param	string	$table
 
- 	 * @return	string
 
- 	 */
 
- 	protected function _field_data($table)
 
- 	{
 
- 		return 'SELECT TOP 1 FROM '.$table;
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Error
 
- 	 *
 
- 	 * Returns an array containing code and message of the last
 
- 	 * database error that has occurred.
 
- 	 *
 
- 	 * @return	array
 
- 	 */
 
- 	public function error()
 
- 	{
 
- 		return array('code' => odbc_error($this->conn_id), 'message' => odbc_errormsg($this->conn_id));
 
- 	}
 
- 	// --------------------------------------------------------------------
 
- 	/**
 
- 	 * Close DB Connection
 
- 	 *
 
- 	 * @return	void
 
- 	 */
 
- 	protected function _close()
 
- 	{
 
- 		odbc_close($this->conn_id);
 
- 	}
 
- }
 
 
  |