blob: c98c14eb189593ea78e14c7947583820642f86c9 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02005 * An open source application development framework for PHP
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +02007 * This content is released under the MIT License (MIT)
Andrey Andreev738497c2012-03-20 14:12:25 +02008 *
Andrey Andreevfe9309d2015-01-09 17:48:58 +02009 * Copyright (c) 2014 - 2015, British Columbia Institute of Technology
Andrey Andreev738497c2012-03-20 14:12:25 +020010 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020011 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
Derek Jonesf4a4bd82011-10-20 12:18:42 -050017 *
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020018 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * THE SOFTWARE.
28 *
29 * @package CodeIgniter
30 * @author EllisLab Dev Team
darwinel871754a2014-02-11 17:34:57 +010031 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevfe9309d2015-01-09 17:48:58 +020032 * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
Andrey Andreevbdb96ca2014-10-28 00:13:31 +020033 * @license http://opensource.org/licenses/MIT MIT License
34 * @link http://codeigniter.com
35 * @since Version 1.3.0
Derek Allard2067d1a2008-11-13 22:59:24 +000036 * @filesource
37 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020038defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000039
Derek Allard2067d1a2008-11-13 22:59:24 +000040/**
41 * Postgre Database Adapter Class
42 *
43 * Note: _DB is an extender class that the app controller
Jamie Rumbelow7efad202012-02-19 12:37:00 +000044 * creates dynamically based on whether the query builder
Derek Allard2067d1a2008-11-13 22:59:24 +000045 * class is being used or not.
46 *
47 * @package CodeIgniter
48 * @subpackage Drivers
49 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050050 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000051 * @link http://codeigniter.com/user_guide/database/
52 */
53class CI_DB_postgre_driver extends CI_DB {
54
Andrey Andreeva24e52e2012-11-02 03:54:12 +020055 /**
56 * Database driver
57 *
58 * @var string
59 */
Andrey Andreev738497c2012-03-20 14:12:25 +020060 public $dbdriver = 'postgre';
Barry Mienydd671972010-10-04 16:33:58 +020061
Derek Allard2067d1a2008-11-13 22:59:24 +000062 /**
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030063 * Database schema
64 *
65 * @var string
Andrey Andreev485a3482012-10-27 03:22:43 +030066 */
67 public $schema = 'public';
68
Andrey Andreeva24e52e2012-11-02 03:54:12 +020069 // --------------------------------------------------------------------
70
Andrey Andreev485a3482012-10-27 03:22:43 +030071 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020072 * ORDER BY random keyword
73 *
Andrey Andreev98e46cf2012-11-13 03:01:42 +020074 * @var array
Andrey Andreeva24e52e2012-11-02 03:54:12 +020075 */
Andrey Andreev98e46cf2012-11-13 03:01:42 +020076 protected $_random_keyword = array('RANDOM()', 'RANDOM()');
Andrey Andreeva24e52e2012-11-02 03:54:12 +020077
78 // --------------------------------------------------------------------
79
80 /**
81 * Class constructor
Derek Allard2067d1a2008-11-13 22:59:24 +000082 *
Andrey Andreev6192bc02012-03-26 12:32:32 +030083 * Creates a DSN string to be used for db_connect() and db_pconnect()
84 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030085 * @param array $params
Andrey Andreev6192bc02012-03-26 12:32:32 +030086 * @return void
Barry Mienydd671972010-10-04 16:33:58 +020087 */
Andrey Andreev6192bc02012-03-26 12:32:32 +030088 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000089 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030090 parent::__construct($params);
Barry Mienydd671972010-10-04 16:33:58 +020091
Andrey Andreev6192bc02012-03-26 12:32:32 +030092 if ( ! empty($this->dsn))
Derek Allard2067d1a2008-11-13 22:59:24 +000093 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030094 return;
95 }
96
97 $this->dsn === '' OR $this->dsn = '';
98
99 if (strpos($this->hostname, '/') !== FALSE)
100 {
101 // If UNIX sockets are used, we shouldn't set a port
102 $this->port = '';
103 }
104
Andrey Andreevab1d5682012-04-03 20:48:32 +0300105 $this->hostname === '' OR $this->dsn = 'host='.$this->hostname.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +0300106
107 if ( ! empty($this->port) && ctype_digit($this->port))
108 {
Andrey Andreevab1d5682012-04-03 20:48:32 +0300109 $this->dsn .= 'port='.$this->port.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +0300110 }
111
112 if ($this->username !== '')
113 {
Andrey Andreevab1d5682012-04-03 20:48:32 +0300114 $this->dsn .= 'user='.$this->username.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +0300115
116 /* An empty password is valid!
117 *
118 * $db['password'] = NULL must be done in order to ignore it.
119 */
120 $this->password === NULL OR $this->dsn .= "password='".$this->password."' ";
121 }
122
123 $this->database === '' OR $this->dsn .= 'dbname='.$this->database.' ';
124
125 /* We don't have these options as elements in our standard configuration
126 * array, but they might be set by parse_url() if the configuration was
127 * provided via string. Example:
128 *
129 * postgre://username:password@localhost:5432/database?connect_timeout=5&sslmode=1
130 */
131 foreach (array('connect_timeout', 'options', 'sslmode', 'service') as $key)
132 {
133 if (isset($this->$key) && is_string($this->key) && $this->key !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000134 {
Andrey Andreev6192bc02012-03-26 12:32:32 +0300135 $this->dsn .= $key."='".$this->key."' ";
Derek Allard2067d1a2008-11-13 22:59:24 +0000136 }
137 }
Andrey Andreev6192bc02012-03-26 12:32:32 +0300138
139 $this->dsn = rtrim($this->dsn);
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 }
141
142 // --------------------------------------------------------------------
143
144 /**
Andrey Andreev0259d122012-12-03 14:55:56 +0200145 * Database connection
Derek Allard2067d1a2008-11-13 22:59:24 +0000146 *
Andrey Andreev0259d122012-12-03 14:55:56 +0200147 * @param bool $persistent
Derek Allard2067d1a2008-11-13 22:59:24 +0000148 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200149 */
Andrey Andreev0259d122012-12-03 14:55:56 +0200150 public function db_connect($persistent = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200151 {
Andrey Andreev71f00992014-11-13 15:16:09 +0200152 $this->conn_id = ($persistent === TRUE)
153 ? pg_pconnect($this->dsn)
154 : pg_connect($this->dsn);
Andrey Andreev0259d122012-12-03 14:55:56 +0200155
Andrey Andreev71f00992014-11-13 15:16:09 +0200156 if ($this->conn_id !== FALSE)
Andrey Andreev0259d122012-12-03 14:55:56 +0200157 {
Andrey Andreev71f00992014-11-13 15:16:09 +0200158 if ($persistent === TRUE
159 && pg_connection_status($this->conn_id) === PGSQL_CONNECTION_BAD
160 && pg_ping($this->conn_id) === FALSE
161 )
162 {
163 return FALSE;
164 }
165
166 empty($this->schema) OR $this->simple_query('SET search_path TO '.$this->schema.',public');
Andrey Andreev0259d122012-12-03 14:55:56 +0200167 }
168
Andrey Andreevc07c4852012-12-03 16:42:10 +0200169 return $this->conn_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 }
171
172 // --------------------------------------------------------------------
173
174 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000175 * Reconnect
176 *
177 * Keep / reestablish the db connection if no queries have been
178 * sent for a length of time exceeding the server's idle timeout
179 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000180 * @return void
181 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200182 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000183 {
184 if (pg_ping($this->conn_id) === FALSE)
185 {
186 $this->conn_id = FALSE;
187 }
188 }
189
190 // --------------------------------------------------------------------
191
192 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000193 * Set client character set
194 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200195 * @param string $charset
Andrey Andreev214583f2012-01-26 16:39:09 +0200196 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000197 */
Andrey Andreev8e89df82012-03-03 03:48:12 +0200198 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000199 {
Andrey Andreev8e89df82012-03-03 03:48:12 +0200200 return (pg_set_client_encoding($this->conn_id, $charset) === 0);
Derek Allard2067d1a2008-11-13 22:59:24 +0000201 }
202
203 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200204
Derek Allard2067d1a2008-11-13 22:59:24 +0000205 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200206 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000208 * @return string
209 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200210 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200212 if (isset($this->data_cache['version']))
213 {
214 return $this->data_cache['version'];
215 }
Andrey Andreev2b730372012-11-05 17:01:11 +0200216 elseif ( ! $this->conn_id)
217 {
218 $this->initialize();
219 }
Andrey Andreev08856b82012-03-03 03:19:28 +0200220
Andrey Andreev2b730372012-11-05 17:01:11 +0200221 if ( ! $this->conn_id OR ($pg_version = pg_version($this->conn_id)) === FALSE)
Andrey Andreev08856b82012-03-03 03:19:28 +0200222 {
223 return FALSE;
224 }
225
226 /* If PHP was compiled with PostgreSQL lib versions earlier
227 * than 7.4, pg_version() won't return the server version
228 * and so we'll have to fall back to running a query in
229 * order to get it.
230 */
231 return isset($pg_version['server'])
232 ? $this->data_cache['version'] = $pg_version['server']
233 : parent::version();
Derek Allard2067d1a2008-11-13 22:59:24 +0000234 }
235
236 // --------------------------------------------------------------------
237
238 /**
239 * Execute the query
240 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200241 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000242 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200243 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200244 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000245 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300246 return pg_query($this->conn_id, $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000247 }
Barry Mienydd671972010-10-04 16:33:58 +0200248
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 // --------------------------------------------------------------------
250
251 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000252 * Begin Transaction
253 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200254 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200255 * @return bool
256 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200257 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000258 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000259 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200260 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 {
262 return TRUE;
263 }
264
265 // Reset the transaction failure flag.
266 // If the $test_mode flag is set to TRUE transactions will be rolled back
267 // even if the queries produce a successful result.
Andrey Andreeva19beb02012-03-03 04:20:50 +0200268 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000269
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300270 return (bool) pg_query($this->conn_id, 'BEGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +0000271 }
272
273 // --------------------------------------------------------------------
274
275 /**
276 * Commit Transaction
277 *
Barry Mienydd671972010-10-04 16:33:58 +0200278 * @return bool
279 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200280 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000281 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000282 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200283 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 {
285 return TRUE;
286 }
287
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300288 return (bool) pg_query($this->conn_id, 'COMMIT');
Derek Allard2067d1a2008-11-13 22:59:24 +0000289 }
290
291 // --------------------------------------------------------------------
292
293 /**
294 * Rollback Transaction
295 *
Barry Mienydd671972010-10-04 16:33:58 +0200296 * @return bool
297 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200298 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000299 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000300 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200301 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 {
303 return TRUE;
304 }
305
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300306 return (bool) pg_query($this->conn_id, 'ROLLBACK');
Derek Allard2067d1a2008-11-13 22:59:24 +0000307 }
308
309 // --------------------------------------------------------------------
310
311 /**
Andrey Andreevd5ab75e2013-07-17 20:28:48 +0300312 * Determines if a query is a "write" type.
313 *
314 * @param string An SQL query string
315 * @return bool
316 */
317 public function is_write_type($sql)
318 {
Andrey Andreevd98c4a32014-01-07 17:33:32 +0200319 return (bool) preg_match('/^\s*"?(SET|INSERT(?![^\)]+\)\s+RETURNING)|UPDATE(?!.*\sRETURNING)|DELETE|CREATE|DROP|TRUNCATE|LOAD|COPY|ALTER|RENAME|GRANT|REVOKE|LOCK|UNLOCK|REINDEX)\s/i', str_replace(array("\r\n", "\r", "\n"), ' ', $sql));
Andrey Andreevd5ab75e2013-07-17 20:28:48 +0300320 }
321
322 // --------------------------------------------------------------------
323
324 /**
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200325 * Platform-dependant string escape
Derek Allard2067d1a2008-11-13 22:59:24 +0000326 *
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200327 * @param string
Derek Allard2067d1a2008-11-13 22:59:24 +0000328 * @return string
329 */
Andrey Andreev0b6a4922013-01-10 16:53:44 +0200330 protected function _escape_str($str)
Derek Jonese4ed5832009-02-20 21:44:59 +0000331 {
Andrey Andreeva9346aa2013-09-13 16:03:07 +0300332 return pg_escape_string($this->conn_id, $str);
Derek Allard2067d1a2008-11-13 22:59:24 +0000333 }
Barry Mienydd671972010-10-04 16:33:58 +0200334
Derek Allard2067d1a2008-11-13 22:59:24 +0000335 // --------------------------------------------------------------------
336
337 /**
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700338 * "Smart" Escape String
339 *
340 * Escapes data based on type
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700341 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200342 * @param string $str
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700343 * @return mixed
344 */
345 public function escape($str)
346 {
Andrey Andreeva9346aa2013-09-13 16:03:07 +0300347 if (is_php('5.4.4') && (is_string($str) OR (is_object($str) && method_exists($str, '__toString'))))
348 {
349 return pg_escape_literal($this->conn_id, $str);
350 }
351 elseif (is_bool($str))
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700352 {
Soesapto Joeni Hantorod2574db2012-05-15 16:28:16 +0700353 return ($str) ? 'TRUE' : 'FALSE';
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700354 }
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700355
Soesapto Joeni Hantorodabeaa12012-05-15 16:37:46 +0700356 return parent::escape($str);
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700357 }
Andrey Andreev242925b2012-05-15 13:03:51 +0300358
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700359 // --------------------------------------------------------------------
360
361 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000362 * Affected Rows
363 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200364 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000365 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200366 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300368 return pg_affected_rows($this->result_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000369 }
Barry Mienydd671972010-10-04 16:33:58 +0200370
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 // --------------------------------------------------------------------
372
373 /**
374 * Insert ID
375 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200376 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000377 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200378 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000379 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200380 $v = pg_version($this->conn_id);
381 $v = isset($v['server']) ? $v['server'] : 0; // 'server' key is only available since PosgreSQL 7.4
Barry Mienydd671972010-10-04 16:33:58 +0200382
Andrey Andreev214583f2012-01-26 16:39:09 +0200383 $table = (func_num_args() > 0) ? func_get_arg(0) : NULL;
384 $column = (func_num_args() > 1) ? func_get_arg(1) : NULL;
Barry Mienydd671972010-10-04 16:33:58 +0200385
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100386 if ($table === NULL && $v >= '8.1')
Derek Allard2067d1a2008-11-13 22:59:24 +0000387 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200388 $sql = 'SELECT LASTVAL() AS ins_id';
Derek Allard2067d1a2008-11-13 22:59:24 +0000389 }
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100390 elseif ($table !== NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000391 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100392 if ($column !== NULL && $v >= '8.0')
Andrey Andreev214583f2012-01-26 16:39:09 +0200393 {
394 $sql = 'SELECT pg_get_serial_sequence(\''.$table."', '".$column."') AS seq";
395 $query = $this->query($sql);
396 $query = $query->row();
397 $seq = $query->seq;
398 }
399 else
400 {
401 // seq_name passed in table parameter
402 $seq = $table;
403 }
404
405 $sql = 'SELECT CURRVAL(\''.$seq."') AS ins_id";
Derek Allard2067d1a2008-11-13 22:59:24 +0000406 }
407 else
408 {
409 return pg_last_oid($this->result_id);
410 }
Andrey Andreev214583f2012-01-26 16:39:09 +0200411
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 $query = $this->query($sql);
Andrey Andreev214583f2012-01-26 16:39:09 +0200413 $query = $query->row();
414 return (int) $query->ins_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000415 }
416
417 // --------------------------------------------------------------------
418
419 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 * Show table query
421 *
422 * Generates a platform-specific query string so that the table names can be fetched
423 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200424 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000425 * @return string
426 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200427 protected function _list_tables($prefix_limit = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200428 {
Andrey Andreev485a3482012-10-27 03:22:43 +0300429 $sql = 'SELECT "table_name" FROM "information_schema"."tables" WHERE "table_schema" = \''.$this->schema."'";
Barry Mienydd671972010-10-04 16:33:58 +0200430
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100431 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000432 {
Andrey Andreev58803fb2012-06-24 00:45:37 +0300433 return $sql.' AND "table_name" LIKE \''
434 .$this->escape_like_str($this->dbprefix)."%' "
435 .sprintf($this->_like_escape_str, $this->_like_escape_chr);
Derek Allard2067d1a2008-11-13 22:59:24 +0000436 }
Barry Mienydd671972010-10-04 16:33:58 +0200437
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 return $sql;
439 }
Barry Mienydd671972010-10-04 16:33:58 +0200440
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 // --------------------------------------------------------------------
442
443 /**
Andrey Andreev46583072012-11-16 16:44:31 +0200444 * List column query
Derek Allard2067d1a2008-11-13 22:59:24 +0000445 *
446 * Generates a platform-specific query string so that the column names can be fetched
447 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200448 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000449 * @return string
450 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200451 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000452 {
Andrey Andreev46583072012-11-16 16:44:31 +0200453 return 'SELECT "column_name"
454 FROM "information_schema"."columns"
455 WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
Derek Allard2067d1a2008-11-13 22:59:24 +0000456 }
457
458 // --------------------------------------------------------------------
459
460 /**
Andrey Andreev46583072012-11-16 16:44:31 +0200461 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200463 * @param string $table
Andrey Andreev46583072012-11-16 16:44:31 +0200464 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000465 */
Andrey Andreev46583072012-11-16 16:44:31 +0200466 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000467 {
Andrey Andreev46583072012-11-16 16:44:31 +0200468 if ($table === '')
469 {
470 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
471 }
472
473 $sql = 'SELECT "column_name", "data_type", "character_maximum_length", "numeric_precision", "column_default"
474 FROM "information_schema"."columns"
475 WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
476
477 if (($query = $this->query($sql)) === FALSE)
478 {
479 return FALSE;
480 }
481 $query = $query->result_object();
482
483 $retval = array();
484 for ($i = 0, $c = count($query); $i < $c; $i++)
485 {
486 $retval[$i] = new stdClass();
487 $retval[$i]->name = $query[$i]->column_name;
488 $retval[$i]->type = $query[$i]->data_type;
489 $retval[$i]->max_length = ($query[$i]->character_maximum_length > 0) ? $query[$i]->character_maximum_length : $query[$i]->numeric_precision;
490 $retval[$i]->default = $query[$i]->column_default;
491 }
492
493 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000494 }
495
496 // --------------------------------------------------------------------
497
498 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200499 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200501 * Returns an array containing code and message of the last
502 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200504 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000505 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200506 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200508 return array('code' => '', 'message' => pg_last_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000509 }
510
511 // --------------------------------------------------------------------
512
513 /**
Andrey Andreev98e46cf2012-11-13 03:01:42 +0200514 * ORDER BY
515 *
516 * @param string $orderby
vlakoff9f8e2992013-09-08 14:05:04 +0200517 * @param string $direction ASC, DESC or RANDOM
Andrey Andreev98e46cf2012-11-13 03:01:42 +0200518 * @param bool $escape
519 * @return object
520 */
521 public function order_by($orderby, $direction = '', $escape = NULL)
522 {
523 $direction = strtoupper(trim($direction));
524 if ($direction === 'RANDOM')
525 {
526 if ( ! is_float($orderby) && ctype_digit((string) $orderby))
527 {
528 $orderby = ($orderby > 1)
529 ? (float) '0.'.$orderby
530 : (float) $orderby;
531 }
532
533 if (is_float($orderby))
534 {
535 $this->simple_query('SET SEED '.$orderby);
536 }
537
538 $orderby = $this->_random_keyword[0];
539 $direction = '';
540 $escape = FALSE;
541 }
542
543 return parent::order_by($orderby, $direction, $escape);
544 }
545
546 // --------------------------------------------------------------------
547
548 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000549 * Update statement
550 *
551 * Generates a platform-specific update string from the supplied data
552 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200553 * @param string $table
554 * @param array $values
Derek Allard2067d1a2008-11-13 22:59:24 +0000555 * @return string
556 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300557 protected function _update($table, $values)
Derek Allard2067d1a2008-11-13 22:59:24 +0000558 {
Andrey Andreevb0478652012-07-18 15:34:46 +0300559 $this->qb_limit = FALSE;
560 $this->qb_orderby = array();
561 return parent::_update($table, $values);
Derek Allard2067d1a2008-11-13 22:59:24 +0000562 }
Barry Mienydd671972010-10-04 16:33:58 +0200563
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 // --------------------------------------------------------------------
565
566 /**
Andrey Andreevd06acd82012-05-25 00:29:09 +0300567 * Update_Batch statement
568 *
569 * Generates a platform-specific batch update string from the supplied data
570 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200571 * @param string $table Table name
572 * @param array $values Update data
573 * @param string $index WHERE key
Andrey Andreevd06acd82012-05-25 00:29:09 +0300574 * @return string
575 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300576 protected function _update_batch($table, $values, $index)
Andrey Andreevd06acd82012-05-25 00:29:09 +0300577 {
578 $ids = array();
579 foreach ($values as $key => $val)
580 {
581 $ids[] = $val[$index];
582
583 foreach (array_keys($val) as $field)
584 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100585 if ($field !== $index)
Andrey Andreevd06acd82012-05-25 00:29:09 +0300586 {
Andrey Andreev838a9d62012-12-03 14:37:47 +0200587 $final[$field][] = 'WHEN '.$val[$index].' THEN '.$val[$field];
Andrey Andreevd06acd82012-05-25 00:29:09 +0300588 }
589 }
590 }
591
592 $cases = '';
593 foreach ($final as $k => $v)
594 {
aroche7f875b72012-07-16 18:22:08 +0300595 $cases .= $k.' = (CASE '.$index."\n"
Andrey Andreevd06acd82012-05-25 00:29:09 +0300596 .implode("\n", $v)."\n"
597 .'ELSE '.$k.' END), ';
598 }
599
Andrey Andreevb0478652012-07-18 15:34:46 +0300600 $this->where($index.' IN('.implode(',', $ids).')', NULL, FALSE);
601
Andrey Andreevd40459d2012-07-18 16:46:39 +0300602 return 'UPDATE '.$table.' SET '.substr($cases, 0, -2).$this->_compile_wh('qb_where');
Andrey Andreevd06acd82012-05-25 00:29:09 +0300603 }
604
605 // --------------------------------------------------------------------
606
607 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000608 * Delete statement
609 *
610 * Generates a platform-specific delete string from the supplied data
611 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200612 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000613 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200614 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300615 protected function _delete($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000616 {
Andrey Andreevb0478652012-07-18 15:34:46 +0300617 $this->qb_limit = FALSE;
618 return parent::_delete($table);
Derek Allard2067d1a2008-11-13 22:59:24 +0000619 }
620
621 // --------------------------------------------------------------------
Andrey Andreev82e88b92012-04-06 21:18:59 +0300622
Derek Allard2067d1a2008-11-13 22:59:24 +0000623 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200624 * LIMIT
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 *
626 * Generates a platform-specific LIMIT clause
627 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200628 * @param string $sql SQL Query
Derek Allard2067d1a2008-11-13 22:59:24 +0000629 * @return string
630 */
Andrey Andreevc9b924c2012-07-19 13:06:02 +0300631 protected function _limit($sql)
Barry Mienydd671972010-10-04 16:33:58 +0200632 {
Andrey Andreevc9b924c2012-07-19 13:06:02 +0300633 return $sql.' LIMIT '.$this->qb_limit.($this->qb_offset ? ' OFFSET '.$this->qb_offset : '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 }
635
636 // --------------------------------------------------------------------
637
638 /**
639 * Close DB Connection
640 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000641 * @return void
642 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300643 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000644 {
Andrey Andreev2bbbd1a2014-05-09 10:24:14 +0300645 pg_close($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000646 }
647
Derek Allard2067d1a2008-11-13 22:59:24 +0000648}
649
Derek Allard2067d1a2008-11-13 22:59:24 +0000650/* End of file postgre_driver.php */
Andrey Andreev242925b2012-05-15 13:03:51 +0300651/* Location: ./system/database/drivers/postgre/postgre_driver.php */