blob: 44cd0ce9b7e5e9505fb958ec68bc1a816bc16eb9 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
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 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Derek Allard2067d1a2008-11-13 22:59:24 +000029/**
30 * Postgre 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
Derek Allard2067d1a2008-11-13 22:59:24 +000034 * class is being used or not.
35 *
36 * @package CodeIgniter
37 * @subpackage Drivers
38 * @category Database
Derek Jonesf4a4bd82011-10-20 12:18:42 -050039 * @author EllisLab Dev Team
Derek Allard2067d1a2008-11-13 22:59:24 +000040 * @link http://codeigniter.com/user_guide/database/
41 */
42class CI_DB_postgre_driver extends CI_DB {
43
Andrey Andreeva24e52e2012-11-02 03:54:12 +020044 /**
45 * Database driver
46 *
47 * @var string
48 */
Andrey Andreev738497c2012-03-20 14:12:25 +020049 public $dbdriver = 'postgre';
Barry Mienydd671972010-10-04 16:33:58 +020050
Derek Allard2067d1a2008-11-13 22:59:24 +000051 /**
Andrey Andreev3e9d2b82012-10-27 14:28:51 +030052 * Database schema
53 *
54 * @var string
Andrey Andreev485a3482012-10-27 03:22:43 +030055 */
56 public $schema = 'public';
57
Andrey Andreeva24e52e2012-11-02 03:54:12 +020058 // --------------------------------------------------------------------
59
Andrey Andreev485a3482012-10-27 03:22:43 +030060 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +020061 * ORDER BY random keyword
62 *
Andrey Andreev98e46cf2012-11-13 03:01:42 +020063 * @var array
Andrey Andreeva24e52e2012-11-02 03:54:12 +020064 */
Andrey Andreev98e46cf2012-11-13 03:01:42 +020065 protected $_random_keyword = array('RANDOM()', 'RANDOM()');
Andrey Andreeva24e52e2012-11-02 03:54:12 +020066
67 // --------------------------------------------------------------------
68
69 /**
70 * Class constructor
Derek Allard2067d1a2008-11-13 22:59:24 +000071 *
Andrey Andreev6192bc02012-03-26 12:32:32 +030072 * Creates a DSN string to be used for db_connect() and db_pconnect()
73 *
Andrey Andreev5fd3ae82012-10-24 14:55:35 +030074 * @param array $params
Andrey Andreev6192bc02012-03-26 12:32:32 +030075 * @return void
Barry Mienydd671972010-10-04 16:33:58 +020076 */
Andrey Andreev6192bc02012-03-26 12:32:32 +030077 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000078 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030079 parent::__construct($params);
Barry Mienydd671972010-10-04 16:33:58 +020080
Andrey Andreev6192bc02012-03-26 12:32:32 +030081 if ( ! empty($this->dsn))
Derek Allard2067d1a2008-11-13 22:59:24 +000082 {
Andrey Andreev6192bc02012-03-26 12:32:32 +030083 return;
84 }
85
86 $this->dsn === '' OR $this->dsn = '';
87
88 if (strpos($this->hostname, '/') !== FALSE)
89 {
90 // If UNIX sockets are used, we shouldn't set a port
91 $this->port = '';
92 }
93
Andrey Andreevab1d5682012-04-03 20:48:32 +030094 $this->hostname === '' OR $this->dsn = 'host='.$this->hostname.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +030095
96 if ( ! empty($this->port) && ctype_digit($this->port))
97 {
Andrey Andreevab1d5682012-04-03 20:48:32 +030098 $this->dsn .= 'port='.$this->port.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +030099 }
100
101 if ($this->username !== '')
102 {
Andrey Andreevab1d5682012-04-03 20:48:32 +0300103 $this->dsn .= 'user='.$this->username.' ';
Andrey Andreev6192bc02012-03-26 12:32:32 +0300104
105 /* An empty password is valid!
106 *
107 * $db['password'] = NULL must be done in order to ignore it.
108 */
109 $this->password === NULL OR $this->dsn .= "password='".$this->password."' ";
110 }
111
112 $this->database === '' OR $this->dsn .= 'dbname='.$this->database.' ';
113
114 /* We don't have these options as elements in our standard configuration
115 * array, but they might be set by parse_url() if the configuration was
116 * provided via string. Example:
117 *
118 * postgre://username:password@localhost:5432/database?connect_timeout=5&sslmode=1
119 */
120 foreach (array('connect_timeout', 'options', 'sslmode', 'service') as $key)
121 {
122 if (isset($this->$key) && is_string($this->key) && $this->key !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000123 {
Andrey Andreev6192bc02012-03-26 12:32:32 +0300124 $this->dsn .= $key."='".$this->key."' ";
Derek Allard2067d1a2008-11-13 22:59:24 +0000125 }
126 }
Andrey Andreev6192bc02012-03-26 12:32:32 +0300127
128 $this->dsn = rtrim($this->dsn);
Derek Allard2067d1a2008-11-13 22:59:24 +0000129 }
130
131 // --------------------------------------------------------------------
132
133 /**
Andrey Andreev0259d122012-12-03 14:55:56 +0200134 * Database connection
Derek Allard2067d1a2008-11-13 22:59:24 +0000135 *
Andrey Andreev0259d122012-12-03 14:55:56 +0200136 * @param bool $persistent
Derek Allard2067d1a2008-11-13 22:59:24 +0000137 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200138 */
Andrey Andreev0259d122012-12-03 14:55:56 +0200139 public function db_connect($persistent = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200140 {
Andrey Andreev0259d122012-12-03 14:55:56 +0200141 if ($persistent === TRUE
Andrey Andreevc07c4852012-12-03 16:42:10 +0200142 && ($this->conn_id = @pg_pconnect($this->dsn))
143 && pg_connection_status($this->conn_id) === PGSQL_CONNECTION_BAD
144 && pg_ping($this->conn_id) === FALSE
Andrey Andreev0259d122012-12-03 14:55:56 +0200145 )
146 {
147 return FALSE;
148 }
149 else
150 {
Andrey Andreevc07c4852012-12-03 16:42:10 +0200151 $this->conn_id = @pg_connect($this->dsn);
Andrey Andreev0259d122012-12-03 14:55:56 +0200152 }
153
Andrey Andreevc07c4852012-12-03 16:42:10 +0200154 if ($this->conn_id && ! empty($this->schema))
Andrey Andreev0259d122012-12-03 14:55:56 +0200155 {
156 $this->simple_query('SET search_path TO '.$this->schema.',public');
157 }
158
Andrey Andreevc07c4852012-12-03 16:42:10 +0200159 return $this->conn_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000160 }
161
162 // --------------------------------------------------------------------
163
164 /**
165 * Persistent database connection
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_pconnect()
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 {
Andrey Andreev0259d122012-12-03 14:55:56 +0200171 return $this->db_connect(TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000172 }
Barry Mienydd671972010-10-04 16:33:58 +0200173
Derek Allard2067d1a2008-11-13 22:59:24 +0000174 // --------------------------------------------------------------------
175
176 /**
Derek Jones87cbafc2009-02-27 16:29:59 +0000177 * Reconnect
178 *
179 * Keep / reestablish the db connection if no queries have been
180 * sent for a length of time exceeding the server's idle timeout
181 *
Derek Jones87cbafc2009-02-27 16:29:59 +0000182 * @return void
183 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200184 public function reconnect()
Derek Jones87cbafc2009-02-27 16:29:59 +0000185 {
186 if (pg_ping($this->conn_id) === FALSE)
187 {
188 $this->conn_id = FALSE;
189 }
190 }
191
192 // --------------------------------------------------------------------
193
194 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000195 * Set client character set
196 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200197 * @param string $charset
Andrey Andreev214583f2012-01-26 16:39:09 +0200198 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000199 */
Andrey Andreev8e89df82012-03-03 03:48:12 +0200200 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000201 {
Andrey Andreev8e89df82012-03-03 03:48:12 +0200202 return (pg_set_client_encoding($this->conn_id, $charset) === 0);
Derek Allard2067d1a2008-11-13 22:59:24 +0000203 }
204
205 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200206
Derek Allard2067d1a2008-11-13 22:59:24 +0000207 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200208 * Database version number
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000210 * @return string
211 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200212 public function version()
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200214 if (isset($this->data_cache['version']))
215 {
216 return $this->data_cache['version'];
217 }
Andrey Andreev2b730372012-11-05 17:01:11 +0200218 elseif ( ! $this->conn_id)
219 {
220 $this->initialize();
221 }
Andrey Andreev08856b82012-03-03 03:19:28 +0200222
Andrey Andreev2b730372012-11-05 17:01:11 +0200223 if ( ! $this->conn_id OR ($pg_version = pg_version($this->conn_id)) === FALSE)
Andrey Andreev08856b82012-03-03 03:19:28 +0200224 {
225 return FALSE;
226 }
227
228 /* If PHP was compiled with PostgreSQL lib versions earlier
229 * than 7.4, pg_version() won't return the server version
230 * and so we'll have to fall back to running a query in
231 * order to get it.
232 */
233 return isset($pg_version['server'])
234 ? $this->data_cache['version'] = $pg_version['server']
235 : parent::version();
Derek Allard2067d1a2008-11-13 22:59:24 +0000236 }
237
238 // --------------------------------------------------------------------
239
240 /**
241 * Execute the query
242 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200243 * @param string $sql an SQL query
Derek Allard2067d1a2008-11-13 22:59:24 +0000244 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200245 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200246 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000247 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000248 return @pg_query($this->conn_id, $sql);
249 }
Barry Mienydd671972010-10-04 16:33:58 +0200250
Derek Allard2067d1a2008-11-13 22:59:24 +0000251 // --------------------------------------------------------------------
252
253 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000254 * Begin Transaction
255 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200256 * @param bool $test_mode
Barry Mienydd671972010-10-04 16:33:58 +0200257 * @return bool
258 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200259 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000260 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000261 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200262 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000263 {
264 return TRUE;
265 }
266
267 // Reset the transaction failure flag.
268 // If the $test_mode flag is set to TRUE transactions will be rolled back
269 // even if the queries produce a successful result.
Andrey Andreeva19beb02012-03-03 04:20:50 +0200270 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000271
Andrey Andreev214583f2012-01-26 16:39:09 +0200272 return (bool) @pg_query($this->conn_id, 'BEGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +0000273 }
274
275 // --------------------------------------------------------------------
276
277 /**
278 * Commit Transaction
279 *
Barry Mienydd671972010-10-04 16:33:58 +0200280 * @return bool
281 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200282 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000283 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200285 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000286 {
287 return TRUE;
288 }
289
Andrey Andreev214583f2012-01-26 16:39:09 +0200290 return (bool) @pg_query($this->conn_id, 'COMMIT');
Derek Allard2067d1a2008-11-13 22:59:24 +0000291 }
292
293 // --------------------------------------------------------------------
294
295 /**
296 * Rollback Transaction
297 *
Barry Mienydd671972010-10-04 16:33:58 +0200298 * @return bool
299 */
Andrey Andreeva19beb02012-03-03 04:20:50 +0200300 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000301 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000302 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreeva19beb02012-03-03 04:20:50 +0200303 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000304 {
305 return TRUE;
306 }
307
Andrey Andreev214583f2012-01-26 16:39:09 +0200308 return (bool) @pg_query($this->conn_id, 'ROLLBACK');
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 }
310
311 // --------------------------------------------------------------------
312
313 /**
314 * Escape String
315 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200316 * @param string $str
317 * @param bool $like Whether or not the string will be used in a LIKE condition
Derek Allard2067d1a2008-11-13 22:59:24 +0000318 * @return string
319 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200320 public function escape_str($str, $like = FALSE)
Derek Jonese4ed5832009-02-20 21:44:59 +0000321 {
322 if (is_array($str))
323 {
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500324 foreach ($str as $key => $val)
Barry Mienydd671972010-10-04 16:33:58 +0200325 {
Derek Jonese4ed5832009-02-20 21:44:59 +0000326 $str[$key] = $this->escape_str($val, $like);
Barry Mienydd671972010-10-04 16:33:58 +0200327 }
328
329 return $str;
330 }
Derek Jonese4ed5832009-02-20 21:44:59 +0000331
332 $str = pg_escape_string($str);
Barry Mienydd671972010-10-04 16:33:58 +0200333
Derek Jonese4ed5832009-02-20 21:44:59 +0000334 // escape LIKE condition wildcards
335 if ($like === TRUE)
336 {
Andrey Andreev55201ac2012-03-20 14:20:39 +0200337 return str_replace(array($this->_like_escape_chr, '%', '_'),
338 array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
339 $str);
Derek Jonese4ed5832009-02-20 21:44:59 +0000340 }
Barry Mienydd671972010-10-04 16:33:58 +0200341
Derek Jonese4ed5832009-02-20 21:44:59 +0000342 return $str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 }
Barry Mienydd671972010-10-04 16:33:58 +0200344
Derek Allard2067d1a2008-11-13 22:59:24 +0000345 // --------------------------------------------------------------------
346
347 /**
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700348 * "Smart" Escape String
349 *
350 * Escapes data based on type
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700351 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200352 * @param string $str
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700353 * @return mixed
354 */
355 public function escape($str)
356 {
Soesapto Joeni Hantorodabeaa12012-05-15 16:37:46 +0700357 if (is_bool($str))
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700358 {
Soesapto Joeni Hantorod2574db2012-05-15 16:28:16 +0700359 return ($str) ? 'TRUE' : 'FALSE';
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700360 }
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700361
Soesapto Joeni Hantorodabeaa12012-05-15 16:37:46 +0700362 return parent::escape($str);
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700363 }
Andrey Andreev242925b2012-05-15 13:03:51 +0300364
Soesapto Joeni Hantorof25b9292012-05-15 08:10:31 +0700365 // --------------------------------------------------------------------
366
367 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000368 * Affected Rows
369 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200370 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000371 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200372 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000373 {
374 return @pg_affected_rows($this->result_id);
375 }
Barry Mienydd671972010-10-04 16:33:58 +0200376
Derek Allard2067d1a2008-11-13 22:59:24 +0000377 // --------------------------------------------------------------------
378
379 /**
380 * Insert ID
381 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200382 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000383 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200384 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000385 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200386 $v = pg_version($this->conn_id);
387 $v = isset($v['server']) ? $v['server'] : 0; // 'server' key is only available since PosgreSQL 7.4
Barry Mienydd671972010-10-04 16:33:58 +0200388
Andrey Andreev214583f2012-01-26 16:39:09 +0200389 $table = (func_num_args() > 0) ? func_get_arg(0) : NULL;
390 $column = (func_num_args() > 1) ? func_get_arg(1) : NULL;
Barry Mienydd671972010-10-04 16:33:58 +0200391
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100392 if ($table === NULL && $v >= '8.1')
Derek Allard2067d1a2008-11-13 22:59:24 +0000393 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200394 $sql = 'SELECT LASTVAL() AS ins_id';
Derek Allard2067d1a2008-11-13 22:59:24 +0000395 }
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100396 elseif ($table !== NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000397 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100398 if ($column !== NULL && $v >= '8.0')
Andrey Andreev214583f2012-01-26 16:39:09 +0200399 {
400 $sql = 'SELECT pg_get_serial_sequence(\''.$table."', '".$column."') AS seq";
401 $query = $this->query($sql);
402 $query = $query->row();
403 $seq = $query->seq;
404 }
405 else
406 {
407 // seq_name passed in table parameter
408 $seq = $table;
409 }
410
411 $sql = 'SELECT CURRVAL(\''.$seq."') AS ins_id";
Derek Allard2067d1a2008-11-13 22:59:24 +0000412 }
413 else
414 {
415 return pg_last_oid($this->result_id);
416 }
Andrey Andreev214583f2012-01-26 16:39:09 +0200417
Derek Allard2067d1a2008-11-13 22:59:24 +0000418 $query = $this->query($sql);
Andrey Andreev214583f2012-01-26 16:39:09 +0200419 $query = $query->row();
420 return (int) $query->ins_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000421 }
422
423 // --------------------------------------------------------------------
424
425 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000426 * Show table query
427 *
428 * Generates a platform-specific query string so that the table names can be fetched
429 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200430 * @param bool $prefix_limit
Derek Allard2067d1a2008-11-13 22:59:24 +0000431 * @return string
432 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200433 protected function _list_tables($prefix_limit = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200434 {
Andrey Andreev485a3482012-10-27 03:22:43 +0300435 $sql = 'SELECT "table_name" FROM "information_schema"."tables" WHERE "table_schema" = \''.$this->schema."'";
Barry Mienydd671972010-10-04 16:33:58 +0200436
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100437 if ($prefix_limit !== FALSE && $this->dbprefix !== '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000438 {
Andrey Andreev58803fb2012-06-24 00:45:37 +0300439 return $sql.' AND "table_name" LIKE \''
440 .$this->escape_like_str($this->dbprefix)."%' "
441 .sprintf($this->_like_escape_str, $this->_like_escape_chr);
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 }
Barry Mienydd671972010-10-04 16:33:58 +0200443
Derek Allard2067d1a2008-11-13 22:59:24 +0000444 return $sql;
445 }
Barry Mienydd671972010-10-04 16:33:58 +0200446
Derek Allard2067d1a2008-11-13 22:59:24 +0000447 // --------------------------------------------------------------------
448
449 /**
Andrey Andreev46583072012-11-16 16:44:31 +0200450 * List column query
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 *
452 * Generates a platform-specific query string so that the column names can be fetched
453 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200454 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000455 * @return string
456 */
Andrey Andreev738497c2012-03-20 14:12:25 +0200457 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000458 {
Andrey Andreev46583072012-11-16 16:44:31 +0200459 return 'SELECT "column_name"
460 FROM "information_schema"."columns"
461 WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
Derek Allard2067d1a2008-11-13 22:59:24 +0000462 }
463
464 // --------------------------------------------------------------------
465
466 /**
Andrey Andreev46583072012-11-16 16:44:31 +0200467 * Returns an object with field data
Derek Allard2067d1a2008-11-13 22:59:24 +0000468 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200469 * @param string $table
Andrey Andreev46583072012-11-16 16:44:31 +0200470 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000471 */
Andrey Andreev46583072012-11-16 16:44:31 +0200472 public function field_data($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000473 {
Andrey Andreev46583072012-11-16 16:44:31 +0200474 if ($table === '')
475 {
476 return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
477 }
478
479 $sql = 'SELECT "column_name", "data_type", "character_maximum_length", "numeric_precision", "column_default"
480 FROM "information_schema"."columns"
481 WHERE LOWER("table_name") = '.$this->escape(strtolower($table));
482
483 if (($query = $this->query($sql)) === FALSE)
484 {
485 return FALSE;
486 }
487 $query = $query->result_object();
488
489 $retval = array();
490 for ($i = 0, $c = count($query); $i < $c; $i++)
491 {
492 $retval[$i] = new stdClass();
493 $retval[$i]->name = $query[$i]->column_name;
494 $retval[$i]->type = $query[$i]->data_type;
495 $retval[$i]->max_length = ($query[$i]->character_maximum_length > 0) ? $query[$i]->character_maximum_length : $query[$i]->numeric_precision;
496 $retval[$i]->default = $query[$i]->column_default;
497 }
498
499 return $retval;
Derek Allard2067d1a2008-11-13 22:59:24 +0000500 }
501
502 // --------------------------------------------------------------------
503
504 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200505 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000506 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200507 * Returns an array containing code and message of the last
508 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000509 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200510 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000511 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200512 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000513 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200514 return array('code' => '', 'message' => pg_last_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000515 }
516
517 // --------------------------------------------------------------------
518
519 /**
Andrey Andreev98e46cf2012-11-13 03:01:42 +0200520 * ORDER BY
521 *
522 * @param string $orderby
523 * @param string $direction ASC or DESC
524 * @param bool $escape
525 * @return object
526 */
527 public function order_by($orderby, $direction = '', $escape = NULL)
528 {
529 $direction = strtoupper(trim($direction));
530 if ($direction === 'RANDOM')
531 {
532 if ( ! is_float($orderby) && ctype_digit((string) $orderby))
533 {
534 $orderby = ($orderby > 1)
535 ? (float) '0.'.$orderby
536 : (float) $orderby;
537 }
538
539 if (is_float($orderby))
540 {
541 $this->simple_query('SET SEED '.$orderby);
542 }
543
544 $orderby = $this->_random_keyword[0];
545 $direction = '';
546 $escape = FALSE;
547 }
548
549 return parent::order_by($orderby, $direction, $escape);
550 }
551
552 // --------------------------------------------------------------------
553
554 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000555 * Update statement
556 *
557 * Generates a platform-specific update string from the supplied data
558 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200559 * @param string $table
560 * @param array $values
Derek Allard2067d1a2008-11-13 22:59:24 +0000561 * @return string
562 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300563 protected function _update($table, $values)
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 {
Andrey Andreevb0478652012-07-18 15:34:46 +0300565 $this->qb_limit = FALSE;
566 $this->qb_orderby = array();
567 return parent::_update($table, $values);
Derek Allard2067d1a2008-11-13 22:59:24 +0000568 }
Barry Mienydd671972010-10-04 16:33:58 +0200569
Derek Allard2067d1a2008-11-13 22:59:24 +0000570 // --------------------------------------------------------------------
571
572 /**
Andrey Andreevd06acd82012-05-25 00:29:09 +0300573 * Update_Batch statement
574 *
575 * Generates a platform-specific batch update string from the supplied data
576 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200577 * @param string $table Table name
578 * @param array $values Update data
579 * @param string $index WHERE key
Andrey Andreevd06acd82012-05-25 00:29:09 +0300580 * @return string
581 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300582 protected function _update_batch($table, $values, $index)
Andrey Andreevd06acd82012-05-25 00:29:09 +0300583 {
584 $ids = array();
585 foreach ($values as $key => $val)
586 {
587 $ids[] = $val[$index];
588
589 foreach (array_keys($val) as $field)
590 {
Alex Bilbie48a2baf2012-06-02 11:09:54 +0100591 if ($field !== $index)
Andrey Andreevd06acd82012-05-25 00:29:09 +0300592 {
Andrey Andreev838a9d62012-12-03 14:37:47 +0200593 $final[$field][] = 'WHEN '.$val[$index].' THEN '.$val[$field];
Andrey Andreevd06acd82012-05-25 00:29:09 +0300594 }
595 }
596 }
597
598 $cases = '';
599 foreach ($final as $k => $v)
600 {
aroche7f875b72012-07-16 18:22:08 +0300601 $cases .= $k.' = (CASE '.$index."\n"
Andrey Andreevd06acd82012-05-25 00:29:09 +0300602 .implode("\n", $v)."\n"
603 .'ELSE '.$k.' END), ';
604 }
605
Andrey Andreevb0478652012-07-18 15:34:46 +0300606 $this->where($index.' IN('.implode(',', $ids).')', NULL, FALSE);
607
Andrey Andreevd40459d2012-07-18 16:46:39 +0300608 return 'UPDATE '.$table.' SET '.substr($cases, 0, -2).$this->_compile_wh('qb_where');
Andrey Andreevd06acd82012-05-25 00:29:09 +0300609 }
610
611 // --------------------------------------------------------------------
612
613 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000614 * Delete statement
615 *
616 * Generates a platform-specific delete string from the supplied data
617 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200618 * @param string $table
Derek Allard2067d1a2008-11-13 22:59:24 +0000619 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200620 */
Andrey Andreevb0478652012-07-18 15:34:46 +0300621 protected function _delete($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000622 {
Andrey Andreevb0478652012-07-18 15:34:46 +0300623 $this->qb_limit = FALSE;
624 return parent::_delete($table);
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 }
626
627 // --------------------------------------------------------------------
Andrey Andreev82e88b92012-04-06 21:18:59 +0300628
Derek Allard2067d1a2008-11-13 22:59:24 +0000629 /**
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200630 * LIMIT
Derek Allard2067d1a2008-11-13 22:59:24 +0000631 *
632 * Generates a platform-specific LIMIT clause
633 *
Andrey Andreeva24e52e2012-11-02 03:54:12 +0200634 * @param string $sql SQL Query
Derek Allard2067d1a2008-11-13 22:59:24 +0000635 * @return string
636 */
Andrey Andreevc9b924c2012-07-19 13:06:02 +0300637 protected function _limit($sql)
Barry Mienydd671972010-10-04 16:33:58 +0200638 {
Andrey Andreevc9b924c2012-07-19 13:06:02 +0300639 return $sql.' LIMIT '.$this->qb_limit.($this->qb_offset ? ' OFFSET '.$this->qb_offset : '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000640 }
641
642 // --------------------------------------------------------------------
643
644 /**
645 * Close DB Connection
646 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000647 * @return void
648 */
Andrey Andreev79922c02012-05-23 12:27:17 +0300649 protected function _close()
Derek Allard2067d1a2008-11-13 22:59:24 +0000650 {
Andrey Andreev79922c02012-05-23 12:27:17 +0300651 @pg_close($this->conn_id);
Derek Allard2067d1a2008-11-13 22:59:24 +0000652 }
653
Derek Allard2067d1a2008-11-13 22:59:24 +0000654}
655
Derek Allard2067d1a2008-11-13 22:59:24 +0000656/* End of file postgre_driver.php */
Andrey Andreev242925b2012-05-15 13:03:51 +0300657/* Location: ./system/database/drivers/postgre/postgre_driver.php */