blob: 3e2d05ce803313e92fbd37dfdc8b08550f910ce8 [file] [log] [blame]
Andrey Andreev738497c2012-03-20 14:12:25 +02001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05007 * NOTICE OF LICENSE
Andrey Andreev738497c2012-03-20 14:12:25 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev738497c2012-03-20 14:12:25 +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 *
Derek Allard2067d1a2008-11-13 22:59:24 +000019 * @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)
Derek Allard2067d1a2008-11-13 22:59:24 +000023 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27
Derek Allard2067d1a2008-11-13 22:59:24 +000028/**
29 * Postgre Database Adapter Class
30 *
31 * Note: _DB is an extender class that the app controller
32 * creates dynamically based on whether the active record
33 * class is being used or not.
34 *
35 * @package CodeIgniter
36 * @subpackage Drivers
37 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050038 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000039 * @link http://codeigniter.com/user_guide/database/
40 */
41class CI_DB_postgre_driver extends CI_DB {
42
Andrey Andreev738497c2012-03-20 14:12:25 +020043 public $dbdriver = 'postgre';
Barry Mienydd671972010-10-04 16:33:58 +020044
Andrey Andreev738497c2012-03-20 14:12:25 +020045 protected $_escape_char = '"';
Derek Allard2067d1a2008-11-13 22:59:24 +000046
Derek Jonese4ed5832009-02-20 21:44:59 +000047 // clause and character used for LIKE escape sequences
Andrey Andreev738497c2012-03-20 14:12:25 +020048 protected $_like_escape_str = " ESCAPE '%s' ";
49 protected $_like_escape_chr = '!';
Derek Jonese4ed5832009-02-20 21:44:59 +000050
Derek Allard2067d1a2008-11-13 22:59:24 +000051 /**
52 * The syntax to count rows is slightly different across different
53 * database engines, so this string appears in each driver and is
54 * used for the count_all() and count_all_results() functions.
55 */
Andrey Andreev738497c2012-03-20 14:12:25 +020056 protected $_count_string = 'SELECT COUNT(*) AS ';
57 protected $_random_keyword = ' RANDOM()'; // database specific random keyword
Derek Allard2067d1a2008-11-13 22:59:24 +000058
59 /**
Andrey Andreev6192bc02012-03-26 12:32:32 +030060 * Constructor
Derek Allard2067d1a2008-11-13 22:59:24 +000061 *
Andrey Andreev6192bc02012-03-26 12:32:32 +030062 * Creates a DSN string to be used for db_connect() and db_pconnect()
63 *
64 * @return void
Barry Mienydd671972010-10-04 16:33:58 +020065 */
Andrey Andreev6192bc02012-03-26 12:32:32 +030066 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000067 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030068 parent::__construct($params);
Barry Mienydd671972010-10-04 16:33:58 +020069
Andrey Andreev6192bc02012-03-26 12:32:32 +030070 if ( ! empty($this->dsn))
Derek Allard2067d1a2008-11-13 22:59:24 +000071 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030072 return;
73 }
74
75 $this->dsn === '' OR $this->dsn = '';
76
77 if (strpos($this->hostname, '/') !== FALSE)
78 {
79 // If UNIX sockets are used, we shouldn't set a port
80 $this->port = '';
81 }
82
83 $this->hostname === '' OR $this->dsn = 'host='.$this->hostname;
84
85 if ( ! empty($this->port) && ctype_digit($this->port))
86 {
87 $this->dsn .= 'host='.$this->port.' ';
88 }
89
90 if ($this->username !== '')
91 {
92 $this->dsn .= 'username='.$this->username.' ';
93
94 /* An empty password is valid!
95 *
96 * $db['password'] = NULL must be done in order to ignore it.
97 */
98 $this->password === NULL OR $this->dsn .= "password='".$this->password."' ";
99 }
100
101 $this->database === '' OR $this->dsn .= 'dbname='.$this->database.' ';
102
103 /* We don't have these options as elements in our standard configuration
104 * array, but they might be set by parse_url() if the configuration was
105 * provided via string. Example:
106 *
107 * postgre://username:password@localhost:5432/database?connect_timeout=5&sslmode=1
108 */
109 foreach (array('connect_timeout', 'options', 'sslmode', 'service') as $key)
110 {
111 if (isset($this->$key) && is_string($this->key) && $this->key !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000112 {
Andrey Andreev6192bc02012-03-26 12:32:32 +0300113 $this->dsn .= $key."='".$this->key."' ";
Derek Allard2067d1a2008-11-13 22:59:24 +0000114 }
115 }
Andrey Andreev6192bc02012-03-26 12:32:32 +0300116
117 $this->dsn = rtrim($this->dsn);
Derek Allard2067d1a2008-11-13 22:59:24 +0000118 }
119
120 // --------------------------------------------------------------------
121
122 /**
123 * Non-persistent database connection
124 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000125 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200126 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200127 public function db_connect()
Barry Mienydd671972010-10-04 16:33:58 +0200128 {
Andrey Andreev6192bc02012-03-26 12:32:32 +0300129 return @pg_connect($this->dsn);
Derek Allard2067d1a2008-11-13 22:59:24 +0000130 }
131
132 // --------------------------------------------------------------------
133
134 /**
135 * Persistent database connection
136 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000137 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200138 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200139 public function db_pconnect()
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 {
Andrey Andreev6192bc02012-03-26 12:32:32 +0300141 return @pg_pconnect($this->dsn);
Derek Allard2067d1a2008-11-13 22:59:24 +0000142 }
Barry Mienydd671972010-10-04 16:33:58 +0200143
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 // --------------------------------------------------------------------
145
146 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000147 * Reconnect
148 *
149 * Keep / reestablish the db connection if no queries have been
150 * sent for a length of time exceeding the server's idle timeout
151 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000152 * @return void
153 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200154 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000155 {
156 if (pg_ping($this->conn_id) === FALSE)
157 {
158 $this->conn_id = FALSE;
159 }
160 }
161
162 // --------------------------------------------------------------------
163
164 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000165 * Select the database
166 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200168 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200169 public function db_select()
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 {
171 // Not needed for Postgre so we'll return TRUE
172 return TRUE;
173 }
174
175 // --------------------------------------------------------------------
176
177 /**
Andrey Andreev8e89df82012-03-03 03:48:12 +0200178 * Set client character set
179 *
180 * @param string
181 * @return bool
182 */
183 protected function _db_set_charset($charset)
184 {
185 return (pg_set_client_encoding($this->conn_id, $charset) === 0);
186 }
187
188 // --------------------------------------------------------------------
189
190 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200191 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000192 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 * @return string
194 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200195 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000196 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200197 if (isset($this->data_cache['version']))
198 {
199 return $this->data_cache['version'];
200 }
201
202 if (($pg_version = pg_version($this->conn_id)) === FALSE)
203 {
204 return FALSE;
205 }
206
207 /* If PHP was compiled with PostgreSQL lib versions earlier
208 * than 7.4, pg_version() won't return the server version
209 * and so we'll have to fall back to running a query in
210 * order to get it.
211 */
212 return isset($pg_version['server'])
213 ? $this->data_cache['version'] = $pg_version['server']
214 : parent::version();
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 }
216
217 // --------------------------------------------------------------------
218
219 /**
220 * Execute the query
221 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000222 * @param string an SQL query
223 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200224 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200225 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000227 return @pg_query($this->conn_id, $sql);
228 }
Barry Mienydd671972010-10-04 16:33:58 +0200229
Derek Allard2067d1a2008-11-13 22:59:24 +0000230 // --------------------------------------------------------------------
231
232 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000233 * Begin Transaction
234 *
Barry Mienydd671972010-10-04 16:33:58 +0200235 * @return bool
236 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200237 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000238 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000239 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200240 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000241 {
242 return TRUE;
243 }
244
245 // Reset the transaction failure flag.
246 // If the $test_mode flag is set to TRUE transactions will be rolled back
247 // even if the queries produce a successful result.
Andrey Andreeva19beb02012-03-03 04:20:50 +0200248 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000249
Andrey Andreeva19beb02012-03-03 04:20:50 +0200250 return @pg_query($this->conn_id, 'BEGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +0000251 }
252
253 // --------------------------------------------------------------------
254
255 /**
256 * Commit Transaction
257 *
Barry Mienydd671972010-10-04 16:33:58 +0200258 * @return bool
259 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200260 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000262 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200263 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000264 {
265 return TRUE;
266 }
267
Andrey Andreeva19beb02012-03-03 04:20:50 +0200268 return @pg_query($this->conn_id, 'COMMIT');
Derek Allard2067d1a2008-11-13 22:59:24 +0000269 }
270
271 // --------------------------------------------------------------------
272
273 /**
274 * Rollback Transaction
275 *
Barry Mienydd671972010-10-04 16:33:58 +0200276 * @return bool
277 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200278 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000280 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200281 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000282 {
283 return TRUE;
284 }
285
Andrey Andreeva19beb02012-03-03 04:20:50 +0200286 return @pg_query($this->conn_id, 'ROLLBACK');
Derek Allard2067d1a2008-11-13 22:59:24 +0000287 }
288
289 // --------------------------------------------------------------------
290
291 /**
292 * Escape String
293 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000294 * @param string
Derek Jonese4ed5832009-02-20 21:44:59 +0000295 * @param bool whether or not the string will be used in a LIKE condition
Derek Allard2067d1a2008-11-13 22:59:24 +0000296 * @return string
297 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200298 public function escape_str($str, $like = FALSE)
Derek Jonese4ed5832009-02-20 21:44:59 +0000299 {
300 if (is_array($str))
301 {
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500302 foreach ($str as $key => $val)
Barry Mienydd671972010-10-04 16:33:58 +0200303 {
Derek Jonese4ed5832009-02-20 21:44:59 +0000304 $str[$key] = $this->escape_str($val, $like);
Barry Mienydd671972010-10-04 16:33:58 +0200305 }
306
307 return $str;
308 }
Derek Jonese4ed5832009-02-20 21:44:59 +0000309
310 $str = pg_escape_string($str);
Barry Mienydd671972010-10-04 16:33:58 +0200311
Derek Jonese4ed5832009-02-20 21:44:59 +0000312 // escape LIKE condition wildcards
313 if ($like === TRUE)
314 {
Andrey Andreev55201ac2012-03-20 14:20:39 +0200315 return str_replace(array($this->_like_escape_chr, '%', '_'),
316 array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
317 $str);
Derek Jonese4ed5832009-02-20 21:44:59 +0000318 }
Barry Mienydd671972010-10-04 16:33:58 +0200319
Derek Jonese4ed5832009-02-20 21:44:59 +0000320 return $str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000321 }
Barry Mienydd671972010-10-04 16:33:58 +0200322
Derek Allard2067d1a2008-11-13 22:59:24 +0000323 // --------------------------------------------------------------------
324
325 /**
326 * Affected Rows
327 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200328 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200330 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
332 return @pg_affected_rows($this->result_id);
333 }
Barry Mienydd671972010-10-04 16:33:58 +0200334
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 // --------------------------------------------------------------------
336
337 /**
338 * Insert ID
339 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200340 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000341 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200342 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200344 $v = $this->version();
Barry Mienydd671972010-10-04 16:33:58 +0200345
Pascal Kriete8761ef52011-02-14 13:13:52 -0500346 $table = func_num_args() > 0 ? func_get_arg(0) : NULL;
347 $column = func_num_args() > 1 ? func_get_arg(1) : NULL;
Barry Mienydd671972010-10-04 16:33:58 +0200348
Pascal Kriete8761ef52011-02-14 13:13:52 -0500349 if ($table == NULL && $v >= '8.1')
Derek Allard2067d1a2008-11-13 22:59:24 +0000350 {
351 $sql='SELECT LASTVAL() as ins_id';
352 }
Pascal Kriete8761ef52011-02-14 13:13:52 -0500353 elseif ($table != NULL && $column != NULL && $v >= '8.0')
Derek Allard2067d1a2008-11-13 22:59:24 +0000354 {
355 $sql = sprintf("SELECT pg_get_serial_sequence('%s','%s') as seq", $table, $column);
356 $query = $this->query($sql);
357 $row = $query->row();
358 $sql = sprintf("SELECT CURRVAL('%s') as ins_id", $row->seq);
359 }
Pascal Kriete8761ef52011-02-14 13:13:52 -0500360 elseif ($table != NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000361 {
362 // seq_name passed in table parameter
363 $sql = sprintf("SELECT CURRVAL('%s') as ins_id", $table);
364 }
365 else
366 {
367 return pg_last_oid($this->result_id);
368 }
369 $query = $this->query($sql);
370 $row = $query->row();
371 return $row->ins_id;
372 }
373
374 // --------------------------------------------------------------------
375
376 /**
377 * "Count All" query
378 *
379 * Generates a platform-specific query string that counts all records in
380 * the specified database
381 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000382 * @param string
383 * @return string
384 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200385 public function count_all($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 {
387 if ($table == '')
Derek Allarde37ab382009-02-03 16:13:57 +0000388 {
389 return 0;
390 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000391
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200392 $query = $this->query($this->_count_string.$this->protect_identifiers('numrows').' FROM '.$this->protect_identifiers($table, TRUE, NULL, FALSE));
Derek Allard2067d1a2008-11-13 22:59:24 +0000393 if ($query->num_rows() == 0)
Derek Allarde37ab382009-02-03 16:13:57 +0000394 {
395 return 0;
396 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000397
398 $row = $query->row();
Greg Aker90248ab2011-08-20 14:23:14 -0500399 $this->_reset_select();
Derek Allarde37ab382009-02-03 16:13:57 +0000400 return (int) $row->numrows;
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 }
402
403 // --------------------------------------------------------------------
404
405 /**
406 * Show table query
407 *
408 * Generates a platform-specific query string so that the table names can be fetched
409 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200410 * @param bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000411 * @return string
412 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200413 protected function _list_tables($prefix_limit = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200414 {
415 $sql = "SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'";
416
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 if ($prefix_limit !== FALSE AND $this->dbprefix != '')
418 {
Greg Aker0d424892010-01-26 02:14:44 +0000419 $sql .= " AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' ".sprintf($this->_like_escape_str, $this->_like_escape_chr);
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 }
Barry Mienydd671972010-10-04 16:33:58 +0200421
Derek Allard2067d1a2008-11-13 22:59:24 +0000422 return $sql;
423 }
Barry Mienydd671972010-10-04 16:33:58 +0200424
Derek Allard2067d1a2008-11-13 22:59:24 +0000425 // --------------------------------------------------------------------
426
427 /**
428 * Show column query
429 *
430 * Generates a platform-specific query string so that the column names can be fetched
431 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 * @param string the table name
433 * @return string
434 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200435 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000436 {
437 return "SELECT column_name FROM information_schema.columns WHERE table_name ='".$table."'";
438 }
439
440 // --------------------------------------------------------------------
441
442 /**
443 * Field data query
444 *
445 * Generates a platform-specific query so that the column data can be retrieved
446 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 * @param string the table name
448 * @return object
449 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200450 protected function _field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 {
452 return "SELECT * FROM ".$table." LIMIT 1";
453 }
454
455 // --------------------------------------------------------------------
456
457 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200458 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000459 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200460 * Returns an array containing code and message of the last
461 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200463 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000464 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200465 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000466 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200467 return array('code' => '', 'message' => pg_last_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000468 }
469
470 // --------------------------------------------------------------------
471
472 /**
473 * Escape the SQL Identifiers
474 *
475 * This function escapes column and table names
476 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000477 * @param string
478 * @return string
479 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200480 public function _escape_identifiers($item)
Derek Allard2067d1a2008-11-13 22:59:24 +0000481 {
482 if ($this->_escape_char == '')
483 {
484 return $item;
485 }
486
487 foreach ($this->_reserved_identifiers as $id)
488 {
489 if (strpos($item, '.'.$id) !== FALSE)
490 {
Barry Mienydd671972010-10-04 16:33:58 +0200491 $str = $this->_escape_char. str_replace('.', $this->_escape_char.'.', $item);
492
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 // remove duplicates if the user already included the escape
494 return preg_replace('/['.$this->_escape_char.']+/', $this->_escape_char, $str);
Barry Mienydd671972010-10-04 16:33:58 +0200495 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000496 }
Barry Mienydd671972010-10-04 16:33:58 +0200497
Derek Allard2067d1a2008-11-13 22:59:24 +0000498 if (strpos($item, '.') !== FALSE)
499 {
Barry Mienydd671972010-10-04 16:33:58 +0200500 $str = $this->_escape_char.str_replace('.', $this->_escape_char.'.'.$this->_escape_char, $item).$this->_escape_char;
Derek Allard2067d1a2008-11-13 22:59:24 +0000501 }
502 else
503 {
504 $str = $this->_escape_char.$item.$this->_escape_char;
505 }
Barry Mienydd671972010-10-04 16:33:58 +0200506
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 // remove duplicates if the user already included the escape
508 return preg_replace('/['.$this->_escape_char.']+/', $this->_escape_char, $str);
509 }
Barry Mienydd671972010-10-04 16:33:58 +0200510
Derek Allard2067d1a2008-11-13 22:59:24 +0000511 // --------------------------------------------------------------------
512
513 /**
514 * From Tables
515 *
516 * This function implicitly groups FROM tables so there is no confusion
517 * about operator precedence in harmony with SQL standards
518 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200519 * @param array
520 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000521 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200522 protected function _from_tables($tables)
Derek Allard2067d1a2008-11-13 22:59:24 +0000523 {
524 if ( ! is_array($tables))
525 {
526 $tables = array($tables);
527 }
Barry Mienydd671972010-10-04 16:33:58 +0200528
Derek Allard2067d1a2008-11-13 22:59:24 +0000529 return implode(', ', $tables);
530 }
531
532 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200533
Derek Allard2067d1a2008-11-13 22:59:24 +0000534 /**
535 * Insert statement
536 *
537 * Generates a platform-specific insert string from the supplied data
538 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000539 * @param string the table name
540 * @param array the insert keys
541 * @param array the insert values
542 * @return string
543 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200544 protected function _insert($table, $keys, $values)
Barry Mienydd671972010-10-04 16:33:58 +0200545 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 return "INSERT INTO ".$table." (".implode(', ', $keys).") VALUES (".implode(', ', $values).")";
547 }
Barry Mienydd671972010-10-04 16:33:58 +0200548
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 // --------------------------------------------------------------------
550
551 /**
Greg Aker60ef4ea2011-04-27 01:45:38 -0500552 * Insert_batch statement
553 *
554 * Generates a platform-specific insert string from the supplied data
555 *
Greg Aker60ef4ea2011-04-27 01:45:38 -0500556 * @param string the table name
557 * @param array the insert keys
558 * @param array the insert values
559 * @return string
560 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200561 protected function _insert_batch($table, $keys, $values)
Greg Aker60ef4ea2011-04-27 01:45:38 -0500562 {
563 return "INSERT INTO ".$table." (".implode(', ', $keys).") VALUES ".implode(', ', $values);
564 }
565
566 // --------------------------------------------------------------------
567
568 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000569 * Update statement
570 *
571 * Generates a platform-specific update string from the supplied data
572 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000573 * @param string the table name
574 * @param array the update data
575 * @param array the where clause
576 * @param array the orderby clause
577 * @param array the limit clause
578 * @return string
579 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200580 protected function _update($table, $values, $where, $orderby = array(), $limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000581 {
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500582 foreach ($values as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 {
584 $valstr[] = $key." = ".$val;
585 }
Barry Mienydd671972010-10-04 16:33:58 +0200586
Derek Allard2067d1a2008-11-13 22:59:24 +0000587 $sql = "UPDATE ".$table." SET ".implode(', ', $valstr);
588
589 $sql .= ($where != '' AND count($where) >=1) ? " WHERE ".implode(" ", $where) : '';
590
Derek Allard2067d1a2008-11-13 22:59:24 +0000591 return $sql;
592 }
593
594 // --------------------------------------------------------------------
595
596 /**
597 * Truncate statement
598 *
599 * Generates a platform-specific truncate string from the supplied data
600 * If the database does not support the truncate() command
601 * This function maps to "DELETE FROM table"
602 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000603 * @param string the table name
604 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200605 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200606 protected function _truncate($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000607 {
608 return "TRUNCATE ".$table;
609 }
Barry Mienydd671972010-10-04 16:33:58 +0200610
Derek Allard2067d1a2008-11-13 22:59:24 +0000611 // --------------------------------------------------------------------
612
613 /**
614 * Delete statement
615 *
616 * Generates a platform-specific delete string from the supplied data
617 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000618 * @param string the table name
619 * @param array the where clause
620 * @param string the limit clause
621 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200622 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200623 protected function _delete($table, $where = array(), $like = array(), $limit = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000624 {
625 $conditions = '';
626
627 if (count($where) > 0 OR count($like) > 0)
628 {
629 $conditions = "\nWHERE ";
630 $conditions .= implode("\n", $this->ar_where);
631
632 if (count($where) > 0 && count($like) > 0)
633 {
634 $conditions .= " AND ";
635 }
636 $conditions .= implode("\n", $like);
637 }
638
SammyK1bf8eeb2012-03-05 16:56:06 -0600639 return "DELETE FROM ".$table.$conditions;
Derek Allard2067d1a2008-11-13 22:59:24 +0000640 }
641
642 // --------------------------------------------------------------------
643 /**
644 * Limit string
645 *
646 * Generates a platform-specific LIMIT clause
647 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000648 * @param string the sql query string
Andrey Andreev738497c2012-03-20 14:12:25 +0200649 * @param int the number of rows to limit the query to
650 * @param int the offset value
Derek Allard2067d1a2008-11-13 22:59:24 +0000651 * @return string
652 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200653 protected function _limit($sql, $limit, $offset)
Barry Mienydd671972010-10-04 16:33:58 +0200654 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000655 $sql .= "LIMIT ".$limit;
Barry Mienydd671972010-10-04 16:33:58 +0200656
Derek Allard2067d1a2008-11-13 22:59:24 +0000657 if ($offset > 0)
658 {
659 $sql .= " OFFSET ".$offset;
660 }
Barry Mienydd671972010-10-04 16:33:58 +0200661
Derek Allard2067d1a2008-11-13 22:59:24 +0000662 return $sql;
663 }
664
665 // --------------------------------------------------------------------
666
667 /**
668 * Close DB Connection
669 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000670 * @param resource
671 * @return void
672 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200673 protected function _close($conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +0000674 {
675 @pg_close($conn_id);
676 }
Timothy Warren99c02ef2012-03-19 19:06:16 -0400677
Derek Allard2067d1a2008-11-13 22:59:24 +0000678}
679
Derek Allard2067d1a2008-11-13 22:59:24 +0000680/* End of file postgre_driver.php */
Timothy Warrenbbea4052012-03-20 08:24:18 -0400681/* Location: ./system/database/drivers/postgre/postgre_driver.php */