blob: 21994b093d614b4cc18b4ee9a08a96e2b8421403 [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
Andrey Andreev98e46cf2012-11-13 03:01:42 +020067 /**
68 * ORDER BY random keyword
69 *
70 * @var array
71 */
72 protected $_random_keyword = array('RANDOM()', 'RANDOM(%d)');
73
Andrey Andreeva24e52e2012-11-02 03:54:12 +020074 // --------------------------------------------------------------------
75
76 /**
77 * Class constructor
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030078 *
79 * @param array $params
80 * @return void
81 */
Andrey Andreeva00e5042012-03-26 12:23:13 +030082 public function __construct($params)
83 {
84 parent::__construct($params);
85
86 if (preg_match('/^CUBRID:[^:]+(:[0-9][1-9]{0,4})?:[^:]+:[^:]*:[^:]*:(\?.+)?$/', $this->dsn, $matches))
87 {
88 if (stripos($matches[2], 'autocommit=off') !== FALSE)
89 {
90 $this->auto_commit = FALSE;
91 }
92 }
93 else
94 {
95 // If no port is defined by the user, use the default value
Andrey Andreeve4c30192012-06-04 15:08:24 +030096 empty($this->port) OR $this->port = 33000;
Andrey Andreeva00e5042012-03-26 12:23:13 +030097 }
98 }
Esen Sagynov2e087942011-08-09 23:35:01 -070099
Andrey Andreev2ea33c32012-10-04 12:37:51 +0300100 // --------------------------------------------------------------------
101
Esen Sagynov2e087942011-08-09 23:35:01 -0700102 /**
103 * Non-persistent database connection
104 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700105 * @return resource
106 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200107 public function db_connect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700108 {
Andrey Andreeva00e5042012-03-26 12:23:13 +0300109 return $this->_cubrid_connect();
Esen Sagynov2e087942011-08-09 23:35:01 -0700110 }
111
112 // --------------------------------------------------------------------
113
114 /**
115 * Persistent database connection
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200116 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700117 * In CUBRID persistent DB connection is supported natively in CUBRID
118 * engine which can be configured in the CUBRID Broker configuration
119 * file by setting the CCI_PCONNECT parameter to ON. In that case, all
120 * connections established between the client application and the
Andrey Andreeva00e5042012-03-26 12:23:13 +0300121 * server will become persistent.
Esen Sagynov2e087942011-08-09 23:35:01 -0700122 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700123 * @return resource
124 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200125 public function db_pconnect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700126 {
Andrey Andreeva00e5042012-03-26 12:23:13 +0300127 return $this->_cubrid_connect(TRUE);
128 }
129
130 // --------------------------------------------------------------------
131
132 /**
133 * CUBRID connection
134 *
135 * A CUBRID-specific method to create a connection to the database.
136 * Except for determining if a persistent connection should be used,
137 * the rest of the logic is the same for db_connect() and db_pconnect().
138 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200139 * @param bool $persistent
Andrey Andreeva00e5042012-03-26 12:23:13 +0300140 * @return resource
141 */
142 protected function _cubrid_connect($persistent = FALSE)
143 {
144 if (preg_match('/^CUBRID:[^:]+(:[0-9][1-9]{0,4})?:[^:]+:([^:]*):([^:]*):(\?.+)?$/', $this->dsn, $matches))
145 {
146 $_temp = ($persistent !== TRUE) ? 'cubrid_connect_with_url' : 'cubrid_pconnect_with_url';
147 $conn_id = ($matches[2] === '' && $matches[3] === '' && $this->username !== '' && $this->password !== '')
148 ? $_temp($this->dsn, $this->username, $this->password)
149 : $_temp($this->dsn);
150 }
151 else
152 {
153 $_temp = ($persistent !== TRUE) ? 'cubrid_connect' : 'cubrid_pconnect';
154 $conn_id = ($this->username !== '')
155 ? $_temp($this->hostname, $this->port, $this->database, $this->username, $this->password)
156 : $_temp($this->hostname, $this->port, $this->database);
157 }
158
159 return $conn_id;
Esen Sagynov2e087942011-08-09 23:35:01 -0700160 }
161
162 // --------------------------------------------------------------------
163
164 /**
165 * Reconnect
166 *
167 * Keep / reestablish the db connection if no queries have been
168 * sent for a length of time exceeding the server's idle timeout
169 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700170 * @return void
171 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200172 public function reconnect()
Esen Sagynov2e087942011-08-09 23:35:01 -0700173 {
174 if (cubrid_ping($this->conn_id) === FALSE)
175 {
176 $this->conn_id = FALSE;
177 }
178 }
179
180 // --------------------------------------------------------------------
181
182 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200183 * Database version number
Esen Sagynov2e087942011-08-09 23:35:01 -0700184 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700185 * @return string
186 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200187 public function version()
Esen Sagynov2e087942011-08-09 23:35:01 -0700188 {
Andrey Andreev2b730372012-11-05 17:01:11 +0200189 if (isset($this->data_cache['version']))
190 {
191 return $this->data_cache['version'];
192 }
193 elseif ( ! $this->conn_id)
194 {
195 $this->initialize();
196 }
197
198 return ( ! $this->conn_id OR ($version = cubrid_get_server_info($this->conn_id)) === FALSE)
199 ? FALSE
200 : $this->data_cache['version'] = $version;
Esen Sagynov2e087942011-08-09 23:35:01 -0700201 }
202
203 // --------------------------------------------------------------------
204
205 /**
206 * Execute the query
207 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200208 * @param string $sql an SQL query
Esen Sagynov2e087942011-08-09 23:35:01 -0700209 * @return resource
210 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200211 protected function _execute($sql)
Esen Sagynov2e087942011-08-09 23:35:01 -0700212 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700213 return @cubrid_query($sql, $this->conn_id);
214 }
215
216 // --------------------------------------------------------------------
217
218 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700219 * Begin Transaction
220 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200221 * @param bool $test_mode
Esen Sagynov2e087942011-08-09 23:35:01 -0700222 * @return bool
223 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200224 public function trans_begin($test_mode = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700225 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700226 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200227 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700228 {
229 return TRUE;
230 }
231
232 // Reset the transaction failure flag.
233 // If the $test_mode flag is set to TRUE transactions will be rolled back
234 // even if the queries produce a successful result.
Andrey Andreev7f55d612012-01-26 13:44:28 +0200235 $this->_trans_failure = ($test_mode === TRUE);
Esen Sagynov2e087942011-08-09 23:35:01 -0700236
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700237 if (cubrid_get_autocommit($this->conn_id))
238 {
239 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_FALSE);
240 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700241
242 return TRUE;
243 }
244
245 // --------------------------------------------------------------------
246
247 /**
248 * Commit Transaction
249 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700250 * @return bool
251 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200252 public function trans_commit()
Esen Sagynov2e087942011-08-09 23:35:01 -0700253 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700254 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200255 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700256 {
257 return TRUE;
258 }
259
260 cubrid_commit($this->conn_id);
261
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700262 if ($this->auto_commit && ! cubrid_get_autocommit($this->conn_id))
263 {
264 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_TRUE);
265 }
266
Esen Sagynov2e087942011-08-09 23:35:01 -0700267 return TRUE;
268 }
269
270 // --------------------------------------------------------------------
271
272 /**
273 * Rollback Transaction
274 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700275 * @return bool
276 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200277 public function trans_rollback()
Esen Sagynov2e087942011-08-09 23:35:01 -0700278 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700279 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev7f55d612012-01-26 13:44:28 +0200280 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Esen Sagynov2e087942011-08-09 23:35:01 -0700281 {
282 return TRUE;
283 }
284
285 cubrid_rollback($this->conn_id);
286
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700287 if ($this->auto_commit && ! cubrid_get_autocommit($this->conn_id))
288 {
289 cubrid_set_autocommit($this->conn_id, CUBRID_AUTOCOMMIT_TRUE);
290 }
291
Esen Sagynov2e087942011-08-09 23:35:01 -0700292 return TRUE;
293 }
294
295 // --------------------------------------------------------------------
296
297 /**
298 * Escape String
299 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200300 * @param string $str
301 * @param bool $like Whether or not the string will be used in a LIKE condition
Esen Sagynov2e087942011-08-09 23:35:01 -0700302 * @return string
303 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200304 public function escape_str($str, $like = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700305 {
306 if (is_array($str))
307 {
308 foreach ($str as $key => $val)
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700309 {
Esen Sagynov2e087942011-08-09 23:35:01 -0700310 $str[$key] = $this->escape_str($val, $like);
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700311 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700312
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700313 return $str;
314 }
Esen Sagynov2e087942011-08-09 23:35:01 -0700315
Andrey Andreev394a3f12012-02-15 14:35:11 +0200316 if (function_exists('cubrid_real_escape_string') &&
317 (is_resource($this->conn_id)
318 OR (get_resource_type($this->conn_id) === 'Unknown' && preg_match('/Resource id #/', strval($this->conn_id)))))
Esen Sagynov2e087942011-08-09 23:35:01 -0700319 {
320 $str = cubrid_real_escape_string($str, $this->conn_id);
321 }
322 else
323 {
324 $str = addslashes($str);
325 }
326
327 // escape LIKE condition wildcards
328 if ($like === TRUE)
329 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200330 return str_replace(array('%', '_'), array('\\%', '\\_'), $str);
Esen Sagynov2e087942011-08-09 23:35:01 -0700331 }
332
333 return $str;
334 }
335
336 // --------------------------------------------------------------------
337
338 /**
339 * Affected Rows
340 *
Andrey Andreevea3eec92012-03-01 19:16:23 +0200341 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -0700342 */
Andrey Andreevea3eec92012-03-01 19:16:23 +0200343 public function affected_rows()
Esen Sagynov2e087942011-08-09 23:35:01 -0700344 {
Andrey Andreevea3eec92012-03-01 19:16:23 +0200345 return @cubrid_affected_rows();
Esen Sagynov2e087942011-08-09 23:35:01 -0700346 }
347
348 // --------------------------------------------------------------------
349
350 /**
351 * Insert ID
352 *
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200353 * @return int
Esen Sagynov2e087942011-08-09 23:35:01 -0700354 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200355 public function insert_id()
Esen Sagynov2e087942011-08-09 23:35:01 -0700356 {
357 return @cubrid_insert_id($this->conn_id);
358 }
359
360 // --------------------------------------------------------------------
361
362 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700363 * List table query
364 *
365 * Generates a platform-specific query string so that the table names can be fetched
366 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200367 * @param bool $prefix_limit
Esen Sagynov2e087942011-08-09 23:35:01 -0700368 * @return string
369 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200370 protected function _list_tables($prefix_limit = FALSE)
Esen Sagynov2e087942011-08-09 23:35:01 -0700371 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200372 $sql = 'SHOW TABLES';
Esen Sagynov2e087942011-08-09 23:35:01 -0700373
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100374 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Esen Sagynov2e087942011-08-09 23:35:01 -0700375 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200376 return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
Esen Sagynov2e087942011-08-09 23:35:01 -0700377 }
378
379 return $sql;
380 }
381
382 // --------------------------------------------------------------------
383
384 /**
385 * Show column query
386 *
387 * Generates a platform-specific query string so that the column names can be fetched
388 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200389 * @param string $table
Esen Sagynov2e087942011-08-09 23:35:01 -0700390 * @return string
391 */
Andrey Andreev592f4ec2012-03-20 15:10:08 +0200392 protected function _list_columns($table = '')
Esen Sagynov2e087942011-08-09 23:35:01 -0700393 {
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200394 return 'SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE);
Esen Sagynov2e087942011-08-09 23:35:01 -0700395 }
396
397 // --------------------------------------------------------------------
398
399 /**
Andrey Andreev10ecc842012-11-16 01:06:20 +0200400 * Returns an object with field data
Esen Sagynov2e087942011-08-09 23:35:01 -0700401 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200402 * @param string $table
Andrey Andreev10ecc842012-11-16 01:06:20 +0200403 * @return array
Esen Sagynov2e087942011-08-09 23:35:01 -0700404 */
Andrey Andreev10ecc842012-11-16 01:06:20 +0200405 public function field_data($table = '')
Esen Sagynov2e087942011-08-09 23:35:01 -0700406 {
Andrey Andreev10ecc842012-11-16 01:06:20 +0200407 if ($table === '')
408 {
409 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
410 }
411
412 if (($query = $this->query('SHOW COLUMNS FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE))) === FALSE)
413 {
414 return FALSE;
415 }
416 $query = $query->result_object();
417
418 $retval = array();
419 for ($i = 0, $c = count($query); $i < $c; $i++)
420 {
421 $retval[$i] = new stdClass();
422 $retval[$i]->name = $query[$i]->Field;
423
424 sscanf($query[$i]->Type, '%[a-z](%d)',
425 $retval[$i]->type,
426 $retval[$i]->max_length
427 );
428
429 $retval[$i]->default = $query[$i]->Default;
430 $retval[$i]->primary_key = (int) ($query[$i]->Key === 'PRI');
431 }
432
433 return $retval;
Esen Sagynov2e087942011-08-09 23:35:01 -0700434 }
435
436 // --------------------------------------------------------------------
437
438 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200439 * Error
Esen Sagynov2e087942011-08-09 23:35:01 -0700440 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200441 * Returns an array containing code and message of the last
442 * database error that has occured.
Esen Sagynov2e087942011-08-09 23:35:01 -0700443 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200444 * @return array
Esen Sagynov2e087942011-08-09 23:35:01 -0700445 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200446 public function error()
Esen Sagynov2e087942011-08-09 23:35:01 -0700447 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200448 return array('code' => cubrid_errno($this->conn_id), 'message' => cubrid_error($this->conn_id));
Esen Sagynov2e087942011-08-09 23:35:01 -0700449 }
450
Esen Sagynov2e087942011-08-09 23:35:01 -0700451 // --------------------------------------------------------------------
452
453 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700454 * Update_Batch statement
455 *
456 * Generates a platform-specific batch update string from the supplied data
457 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200458 * @param string $table Table name
459 * @param array $values Update data
460 * @param string $index WHERE key
Esen Sagynov2e087942011-08-09 23:35:01 -0700461 * @return string
462 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300463 protected function _update_batch($table, $values, $index)
Esen Sagynov2e087942011-08-09 23:35:01 -0700464 {
465 $ids = array();
Esen Sagynov2e087942011-08-09 23:35:01 -0700466 foreach ($values as $key => $val)
467 {
468 $ids[] = $val[$index];
469
470 foreach (array_keys($val) as $field)
471 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100472 if ($field !== $index)
Esen Sagynov2e087942011-08-09 23:35:01 -0700473 {
Esen Sagynov2ab2b1e2011-08-11 00:41:16 -0700474 $final[$field][] = 'WHEN '.$index.' = '.$val[$index].' THEN '.$val[$field];
Esen Sagynov2e087942011-08-09 23:35:01 -0700475 }
476 }
477 }
478
Esen Sagynov2e087942011-08-09 23:35:01 -0700479 $cases = '';
Esen Sagynov2e087942011-08-09 23:35:01 -0700480 foreach ($final as $k => $v)
481 {
Andrey Andreev7f55d612012-01-26 13:44:28 +0200482 $cases .= $k." = CASE \n"
483 .implode("\n", $v)
484 .'ELSE '.$k.' END, ';
Esen Sagynov2e087942011-08-09 23:35:01 -0700485 }
486
Andrey Andreevb0478652012-07-18 15:34:46 +0300487 $this->where($index.' IN('.implode(',', $ids).')', NULL, FALSE);
488
Andrey Andreevd40459d2012-07-18 16:46:39 +0300489 return 'UPDATE '.$table.' SET '.substr($cases, 0, -2).$this->_compile_wh('qb_where');
Esen Sagynov2e087942011-08-09 23:35:01 -0700490 }
491
492 // --------------------------------------------------------------------
Andrey Andreev79922c02012-05-23 12:27:17 +0300493
Esen Sagynov2e087942011-08-09 23:35:01 -0700494 /**
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300495 * FROM tables
496 *
497 * Groups tables in FROM clauses if needed, so there is no confusion
498 * about operator precedence.
499 *
500 * @return string
501 */
502 protected function _from_tables()
503 {
Andrey Andreevfce9abe2012-10-09 11:37:00 +0300504 if ( ! empty($this->qb_join) && count($this->qb_from) > 1)
Andrey Andreev7eaa14f2012-10-09 11:34:01 +0300505 {
506 return '('.implode(', ', $this->qb_from).')';
507 }
508
509 return implode(', ', $this->qb_from);
510 }
511
512 // --------------------------------------------------------------------
513
514 /**
Esen Sagynov2e087942011-08-09 23:35:01 -0700515 * Close DB Connection
516 *
Esen Sagynov2e087942011-08-09 23:35:01 -0700517 * @return void
518 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300519 protected function _close()
Esen Sagynov2e087942011-08-09 23:35:01 -0700520 {
Andrey Andreev79922c02012-05-23 12:27:17 +0300521 @cubrid_close($this->conn_id);
Esen Sagynov2e087942011-08-09 23:35:01 -0700522 }
523
524}
525
Esen Sagynov2e087942011-08-09 23:35:01 -0700526/* End of file cubrid_driver.php */
Andrey Andreev79922c02012-05-23 12:27:17 +0300527/* Location: ./system/database/drivers/cubrid/cubrid_driver.php */