blob: 48b904286cbbff0a9f0e4bc2ea0cec3e29bc010d [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Esen Sagynov2e087942011-08-09 23:35:01 -07002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Esen Sagynov2e087942011-08-09 23:35:01 -07006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev592f4ec2012-03-20 15:10:08 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev592f4ec2012-03-20 15:10:08 +020010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Esen Sagynov2e087942011-08-09 23:35:01 -070019 * @package CodeIgniter
Derek Jonesf4a4bd82011-10-20 12:18:42 -050020 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
Esen Sagynov2e087942011-08-09 23:35:01 -070023 * @link http://codeigniter.com
Andrey Andreevcf631202012-02-16 11:36:28 +020024 * @since Version 2.1
Esen Sagynov2e087942011-08-09 23:35:01 -070025 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Esen Sagynov2e087942011-08-09 23:35:01 -070028
Esen Sagynov2e087942011-08-09 23:35:01 -070029/**
30 * CUBRID Database Adapter Class
31 *
32 * Note: _DB is an extender class that the app controller
Jamie Rumbelow7efad202012-02-19 12:37:00 +000033 * creates dynamically based on whether the query builder
Esen Sagynov2e087942011-08-09 23:35:01 -070034 * class is being used or not.
35 *
36 * @package CodeIgniter
37 * @subpackage Drivers
38 * @category Database
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -070039 * @author Esen Sagynov
Esen Sagynov2e087942011-08-09 23:35:01 -070040 * @link http://codeigniter.com/user_guide/database/
41 */
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -070042class CI_DB_cubrid_driver extends CI_DB {
43
Andrey Andreeva24e52e2012-11-02 03:54:12 +020044 /**
45 * Database driver
46 *
47 * @var string
48 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +020049 public $dbdriver = 'cubrid';
Esen Sagynov2e087942011-08-09 23:35:01 -070050
Andrey Andreeva24e52e2012-11-02 03:54:12 +020051 /**
52 * Auto-commit flag
53 *
54 * @var bool
55 */
Andrey Andreeva00e5042012-03-26 12:23:13 +030056 public $auto_commit = TRUE;
57
Andrey Andreeva24e52e2012-11-02 03:54:12 +020058 // --------------------------------------------------------------------
59
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030060 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020061 * Identifier escape character
62 *
63 * @var string
64 */
65 protected $_escape_char = '`';
66
67 // --------------------------------------------------------------------
68
69 /**
70 * Class constructor
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030071 *
72 * @param array $params
73 * @return void
74 */
Andrey Andreeva00e5042012-03-26 12:23:13 +030075 public function __construct($params)
76 {
77 parent::__construct($params);
78
79 if (preg_match('/^CUBRID:[^:]+(:[0-9][1-9]{0,4})?:[^:]+:[^:]*:[^:]*:(\?.+)?$/', $this->dsn, $matches))
80 {
81 if (stripos($matches[2], 'autocommit=off') !== FALSE)
82 {
83 $this->auto_commit = FALSE;
84 }
85 }
86 else
87 {
88 // If no port is defined by the user, use the default value
Andrey Andreeve4c30192012-06-04 15:08:24 +030089 empty($this->port) OR $this->port = 33000;
Andrey Andreeva00e5042012-03-26 12:23:13 +030090 }
91 }
Esen Sagynov2e087942011-08-09 23:35:01 -070092
Andrey Andreev2ea33c32012-10-04 12:37:51 +030093 // --------------------------------------------------------------------
94
Esen Sagynov2e087942011-08-09 23:35:01 -070095 /**
96 * Non-persistent database connection
97 *
Esen Sagynov2e087942011-08-09 23:35:01 -070098 * @return resource
99 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200100 public function db_connect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700101 {
Andrey Andreeva00e5042012-03-26 12:23:13 +0300102 return $this->_cubrid_connect();
Esen Sagynov2e087942011-08-09 23:35:01 -0700103 }
104
105 // --------------------------------------------------------------------
106
107 /**
108 * Persistent database connection
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200109 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700110 * In CUBRID persistent DB connection is supported natively in CUBRID
111 * engine which can be configured in the CUBRID Broker configuration
112 * file by setting the CCI_PCONNECT parameter to ON. In that case, all
113 * connections established between the client application and the
Andrey Andreeva00e5042012-03-26 12:23:13 +0300114 * server will become persistent.
Esen Sagynov2e087942011-08-09 23:35:01 -0700115 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700116 * @return resource
117 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200118 public function db_pconnect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700119 {
Andrey Andreeva00e5042012-03-26 12:23:13 +0300120 return $this->_cubrid_connect(TRUE);
121 }
122
123 // --------------------------------------------------------------------
124
125 /**
126 * CUBRID connection
127 *
128 * A CUBRID-specific method to create a connection to the database.
129 * Except for determining if a persistent connection should be used,
130 * the rest of the logic is the same for db_connect() and db_pconnect().
131 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200132 * @param bool $persistent
Andrey Andreeva00e5042012-03-26 12:23:13 +0300133 * @return resource
134 */
135 protected function _cubrid_connect($persistent = FALSE)
136 {
137 if (preg_match('/^CUBRID:[^:]+(:[0-9][1-9]{0,4})?:[^:]+:([^:]*):([^:]*):(\?.+)?$/', $this->dsn, $matches))
138 {
139 $_temp = ($persistent !== TRUE) ? 'cubrid_connect_with_url' : 'cubrid_pconnect_with_url';
140 $conn_id = ($matches[2] === '' && $matches[3] === '' && $this->username !== '' && $this->password !== '')
141 ? $_temp($this->dsn, $this->username, $this->password)
142 : $_temp($this->dsn);
143 }
144 else
145 {
146 $_temp = ($persistent !== TRUE) ? 'cubrid_connect' : 'cubrid_pconnect';
147 $conn_id = ($this->username !== '')
148 ? $_temp($this->hostname, $this->port, $this->database, $this->username, $this->password)
149 : $_temp($this->hostname, $this->port, $this->database);
150 }
151
152 return $conn_id;
Esen Sagynov2e087942011-08-09 23:35:01 -0700153 }
154
155 // --------------------------------------------------------------------
156
157 /**
158 * Reconnect
159 *
160 * Keep / reestablish the db connection if no queries have been
161 * sent for a length of time exceeding the server's idle timeout
162 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700163 * @return void
164 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200165 public function reconnect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700166 {
167 if (cubrid_ping($this->conn_id) === FALSE)
168 {
169 $this->conn_id = FALSE;
170 }
171 }
172
173 // --------------------------------------------------------------------
174
175 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200176 * Database version number
Esen Sagynov2e087942011-08-09 23:35:01 -0700177 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700178 * @return string
179 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200180 public function version()
Esen Sagynov2e087942011-08-09 23:35:01 -0700181 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200182 return isset($this->data_cache['version'])
183 ? $this->data_cache['version']
184 : $this->data_cache['version'] = cubrid_get_server_info($this->conn_id);
Esen Sagynov2e087942011-08-09 23:35:01 -0700185 }
186
187 // --------------------------------------------------------------------
188
189 /**
190 * Execute the query
191 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200192 * @param string $sql an SQL query
Esen Sagynov2e087942011-08-09 23:35:01 -0700193 * @return resource
194 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200195 protected function _execute($sql)
Esen Sagynov2e087942011-08-09 23:35:01 -0700196 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700197 return @cubrid_query($sql, $this->conn_id);
198 }
199
200 // --------------------------------------------------------------------
201
202 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700203 * Begin Transaction
204 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200205 * @param bool $test_mode
Esen Sagynov2e087942011-08-09 23:35:01 -0700206 * @return bool
207 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200208 public function trans_begin($test_mode = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700209 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700210 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200211 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700212 {
213 return TRUE;
214 }
215
216 // Reset the transaction failure flag.
217 // If the $test_mode flag is set to TRUE transactions will be rolled back
218 // even if the queries produce a successful result.
Andrey Andreev7f55d612012-01-26 13:44:28 +0200219 $this->_trans_failure = ($test_mode === TRUE);
Esen Sagynov2e087942011-08-09 23:35:01 -0700220
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700221 if (cubrid_get_autocommit($this->conn_id))
222 {
223 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_FALSE);
224 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700225
226 return TRUE;
227 }
228
229 // --------------------------------------------------------------------
230
231 /**
232 * Commit Transaction
233 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700234 * @return bool
235 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200236 public function trans_commit()
Esen Sagynov2e087942011-08-09 23:35:01 -0700237 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700238 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200239 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700240 {
241 return TRUE;
242 }
243
244 cubrid_commit($this->conn_id);
245
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700246 if ($this->auto_commit && ! cubrid_get_autocommit($this->conn_id))
247 {
248 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_TRUE);
249 }
250
Esen Sagynov2e087942011-08-09 23:35:01 -0700251 return TRUE;
252 }
253
254 // --------------------------------------------------------------------
255
256 /**
257 * Rollback Transaction
258 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700259 * @return bool
260 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200261 public function trans_rollback()
Esen Sagynov2e087942011-08-09 23:35:01 -0700262 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700263 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200264 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700265 {
266 return TRUE;
267 }
268
269 cubrid_rollback($this->conn_id);
270
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700271 if ($this->auto_commit && ! cubrid_get_autocommit($this->conn_id))
272 {
273 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_TRUE);
274 }
275
Esen Sagynov2e087942011-08-09 23:35:01 -0700276 return TRUE;
277 }
278
279 // --------------------------------------------------------------------
280
281 /**
282 * Escape String
283 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200284 * @param string $str
285 * @param bool $like Whether or not the string will be used in a LIKE condition
Esen Sagynov2e087942011-08-09 23:35:01 -0700286 * @return string
287 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200288 public function escape_str($str, $like = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700289 {
290 if (is_array($str))
291 {
292 foreach ($str as $key => $val)
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700293 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700294 $str[$key] = $this->escape_str($val, $like);
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700295 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700296
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700297 return $str;
298 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700299
Andrey Andreev394a3f12012-02-15 14:35:11 +0200300 if (function_exists('cubrid_real_escape_string') &&
301 (is_resource($this->conn_id)
302 OR (get_resource_type($this->conn_id) === 'Unknown' && preg_match('/Resource id #/', strval($this->conn_id)))))
Esen Sagynov2e087942011-08-09 23:35:01 -0700303 {
304 $str = cubrid_real_escape_string($str, $this->conn_id);
305 }
306 else
307 {
308 $str = addslashes($str);
309 }
310
311 // escape LIKE condition wildcards
312 if ($like === TRUE)
313 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200314 return str_replace(array('%', '_'), array('\\%', '\\_'), $str);
Esen Sagynov2e087942011-08-09 23:35:01 -0700315 }
316
317 return $str;
318 }
319
320 // --------------------------------------------------------------------
321
322 /**
323 * Affected Rows
324 *
Andrey Andreevea3eec92012-03-01 19:16:23 +0200325 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -0700326 */
Andrey Andreevea3eec92012-03-01 19:16:23 +0200327 public function affected_rows()
Esen Sagynov2e087942011-08-09 23:35:01 -0700328 {
Andrey Andreevea3eec92012-03-01 19:16:23 +0200329 return @cubrid_affected_rows();
Esen Sagynov2e087942011-08-09 23:35:01 -0700330 }
331
332 // --------------------------------------------------------------------
333
334 /**
335 * Insert ID
336 *
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200337 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -0700338 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200339 public function insert_id()
Esen Sagynov2e087942011-08-09 23:35:01 -0700340 {
341 return @cubrid_insert_id($this->conn_id);
342 }
343
344 // --------------------------------------------------------------------
345
346 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700347 * List table query
348 *
349 * Generates a platform-specific query string so that the table names can be fetched
350 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200351 * @param bool $prefix_limit
Esen Sagynov2e087942011-08-09 23:35:01 -0700352 * @return string
353 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200354 protected function _list_tables($prefix_limit = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700355 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200356 $sql = 'SHOW TABLES';
Esen Sagynov2e087942011-08-09 23:35:01 -0700357
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100358 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Esen Sagynov2e087942011-08-09 23:35:01 -0700359 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200360 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Esen Sagynov2e087942011-08-09 23:35:01 -0700361 }
362
363 return $sql;
364 }
365
366 // --------------------------------------------------------------------
367
368 /**
369 * Show column query
370 *
371 * Generates a platform-specific query string so that the column names can be fetched
372 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200373 * @param string $table
Esen Sagynov2e087942011-08-09 23:35:01 -0700374 * @return string
375 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200376 protected function _list_columns($table = '')
Esen Sagynov2e087942011-08-09 23:35:01 -0700377 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200378 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Esen Sagynov2e087942011-08-09 23:35:01 -0700379 }
380
381 // --------------------------------------------------------------------
382
383 /**
384 * Field data query
385 *
386 * Generates a platform-specific query so that the column data can be retrieved
387 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200388 * @param string $table
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200389 * @return string
Esen Sagynov2e087942011-08-09 23:35:01 -0700390 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200391 protected function _field_data($table)
Esen Sagynov2e087942011-08-09 23:35:01 -0700392 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200393 return 'SELECT * FROM '.$table.' LIMIT 1';
Esen Sagynov2e087942011-08-09 23:35:01 -0700394 }
395
396 // --------------------------------------------------------------------
397
398 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200399 * Error
Esen Sagynov2e087942011-08-09 23:35:01 -0700400 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200401 * Returns an array containing code and message of the last
402 * database error that has occured.
Esen Sagynov2e087942011-08-09 23:35:01 -0700403 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200404 * @return array
Esen Sagynov2e087942011-08-09 23:35:01 -0700405 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200406 public function error()
Esen Sagynov2e087942011-08-09 23:35:01 -0700407 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200408 return array('code' => cubrid_errno($this->conn_id), 'message' => cubrid_error($this->conn_id));
Esen Sagynov2e087942011-08-09 23:35:01 -0700409 }
410
Esen Sagynov2e087942011-08-09 23:35:01 -0700411 // --------------------------------------------------------------------
412
413 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700414 * Update_Batch statement
415 *
416 * Generates a platform-specific batch update string from the supplied data
417 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200418 * @param string $table Table name
419 * @param array $values Update data
420 * @param string $index WHERE key
Esen Sagynov2e087942011-08-09 23:35:01 -0700421 * @return string
422 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300423 protected function _update_batch($table, $values, $index)
Esen Sagynov2e087942011-08-09 23:35:01 -0700424 {
425 $ids = array();
Esen Sagynov2e087942011-08-09 23:35:01 -0700426 foreach ($values as $key => $val)
427 {
428 $ids[] = $val[$index];
429
430 foreach (array_keys($val) as $field)
431 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100432 if ($field !== $index)
Esen Sagynov2e087942011-08-09 23:35:01 -0700433 {
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700434 $final[$field][] = 'WHEN '.$index.' = '.$val[$index].' THEN '.$val[$field];
Esen Sagynov2e087942011-08-09 23:35:01 -0700435 }
436 }
437 }
438
Esen Sagynov2e087942011-08-09 23:35:01 -0700439 $cases = '';
Esen Sagynov2e087942011-08-09 23:35:01 -0700440 foreach ($final as $k => $v)
441 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200442 $cases .= $k." = CASE \n"
443 .implode("\n", $v)
444 .'ELSE '.$k.' END, ';
Esen Sagynov2e087942011-08-09 23:35:01 -0700445 }
446
Andrey Andreevb0478652012-07-18 15:34:46 +0300447 $this->where($index.' IN('.implode(',', $ids).')', NULL, FALSE);
448
Andrey Andreevd40459d2012-07-18 16:46:39 +0300449 return 'UPDATE '.$table.' SET '.substr($cases, 0, -2).$this->_compile_wh('qb_where');
Esen Sagynov2e087942011-08-09 23:35:01 -0700450 }
451
452 // --------------------------------------------------------------------
Andrey Andreev79922c02012-05-23 12:27:17 +0300453
Esen Sagynov2e087942011-08-09 23:35:01 -0700454 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300455 * FROM tables
456 *
457 * Groups tables in FROM clauses if needed, so there is no confusion
458 * about operator precedence.
459 *
460 * @return string
461 */
462 protected function _from_tables()
463 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300464 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300465 {
466 return '('.implode(', ', $this->qb_from).')';
467 }
468
469 return implode(', ', $this->qb_from);
470 }
471
472 // --------------------------------------------------------------------
473
474 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700475 * Close DB Connection
476 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700477 * @return void
478 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300479 protected function _close()
Esen Sagynov2e087942011-08-09 23:35:01 -0700480 {
Andrey Andreev79922c02012-05-23 12:27:17 +0300481 @cubrid_close($this->conn_id);
Esen Sagynov2e087942011-08-09 23:35:01 -0700482 }
483
484}
485
Esen Sagynov2e087942011-08-09 23:35:01 -0700486/* End of file cubrid_driver.php */
Andrey Andreev79922c02012-05-23 12:27:17 +0300487/* Location: ./system/database/drivers/cubrid/cubrid_driver.php */