blob: 707aaaebeee9ebaa0052b73cb677cb09366eb7d9 [file] [log] [blame]
Andrey Andreev214583f2012-01-26 16:39:09 +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 Andreev214583f2012-01-26 16:39:09 +02008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev214583f2012-01-26 16:39:09 +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 Andreev214583f2012-01-26 16:39:09 +020043 public $dbdriver = 'postgre';
Barry Mienydd671972010-10-04 16:33:58 +020044
Andrey Andreev214583f2012-01-26 16:39:09 +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' ";
Andrey Andreev214583f2012-01-26 16:39:09 +020049 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 Andreev214583f2012-01-26 16:39:09 +020056 protected $_count_string = 'SELECT COUNT(*) AS ';
57 protected $_random_keyword = ' RANDOM()'; // database specific random keyword
58
Derek Allard2067d1a2008-11-13 22:59:24 +000059 /**
Andrey Andreev214583f2012-01-26 16:39:09 +020060 * Constructor
Derek Allard2067d1a2008-11-13 22:59:24 +000061 *
Andrey Andreev214583f2012-01-26 16:39:09 +020062 * 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 Andreev2b3edbd2012-01-27 21:02:53 +020066 public function __construct($params)
Derek Allard2067d1a2008-11-13 22:59:24 +000067 {
Andrey Andreev214583f2012-01-26 16:39:09 +020068 parent::__construct($params);
Barry Mienydd671972010-10-04 16:33:58 +020069
Andrey Andreeva64c61a2012-02-12 22:26:46 +020070 if ( ! empty($this->dsn))
Derek Allard2067d1a2008-11-13 22:59:24 +000071 {
Andrey Andreeva64c61a2012-02-12 22:26:46 +020072 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
Andrey Andreevab1d5682012-04-03 20:48:32 +030083 $this->hostname === '' OR $this->dsn = 'host='.$this->hostname.' ';
Andrey Andreeva64c61a2012-02-12 22:26:46 +020084
85 if ( ! empty($this->port) && ctype_digit($this->port))
86 {
Andrey Andreevab1d5682012-04-03 20:48:32 +030087 $this->dsn .= 'port='.$this->port.' ';
Andrey Andreeva64c61a2012-02-12 22:26:46 +020088 }
89
90 if ($this->username !== '')
91 {
Andrey Andreevab1d5682012-04-03 20:48:32 +030092 $this->dsn .= 'user='.$this->username.' ';
Andrey Andreeva64c61a2012-02-12 22:26:46 +020093
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 Andreeva64c61a2012-02-12 22:26:46 +0200113 $this->dsn .= $key."='".$this->key."' ";
Derek Allard2067d1a2008-11-13 22:59:24 +0000114 }
115 }
Andrey Andreev214583f2012-01-26 16:39:09 +0200116
Andrey Andreeva64c61a2012-02-12 22:26:46 +0200117 $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 Andreev214583f2012-01-26 16:39:09 +0200127 public function db_connect()
Barry Mienydd671972010-10-04 16:33:58 +0200128 {
Andrey Andreeva6a14962012-03-03 03:57:26 +0200129 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 Andreev214583f2012-01-26 16:39:09 +0200139 public function db_pconnect()
Derek Allard2067d1a2008-11-13 22:59:24 +0000140 {
Andrey Andreeva6a14962012-03-03 03:57:26 +0200141 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 Andreev214583f2012-01-26 16:39:09 +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 * Set client character set
166 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000167 * @param string
Andrey Andreev214583f2012-01-26 16:39:09 +0200168 * @return bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000169 */
Andrey Andreev718d9ef2012-03-01 19:37:11 +0200170 protected function _db_set_charset($charset)
Derek Allard2067d1a2008-11-13 22:59:24 +0000171 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200172 return (pg_set_client_encoding($this->conn_id, $charset) === 0);
173 }
174
175 // --------------------------------------------------------------------
176
177 /**
Andrey Andreev08856b82012-03-03 03:19:28 +0200178 * Database version number
Andrey Andreev214583f2012-01-26 16:39:09 +0200179 *
180 * @return string
181 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200182 public function version()
183 {
Andrey Andreev08856b82012-03-03 03:19:28 +0200184 if (isset($this->data_cache['version']))
185 {
186 return $this->data_cache['version'];
187 }
Andrey Andreev214583f2012-01-26 16:39:09 +0200188
Andrey Andreev08856b82012-03-03 03:19:28 +0200189 if (($pg_version = pg_version($this->conn_id)) === FALSE)
190 {
191 return FALSE;
192 }
193
194 /* If PHP was compiled with PostgreSQL lib versions earlier
195 * than 7.4, pg_version() won't return the server version
196 * and so we'll have to fall back to running a query in
197 * order to get it.
Andrey Andreev214583f2012-01-26 16:39:09 +0200198 */
Andrey Andreev08856b82012-03-03 03:19:28 +0200199 return isset($pg_version['server'])
200 ? $this->data_cache['version'] = $pg_version['server']
201 : parent::version();
Derek Allard2067d1a2008-11-13 22:59:24 +0000202 }
203
204 // --------------------------------------------------------------------
205
206 /**
207 * Execute the query
208 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000209 * @param string an SQL query
210 * @return resource
Barry Mienydd671972010-10-04 16:33:58 +0200211 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200212 protected function _execute($sql)
Derek Allard2067d1a2008-11-13 22:59:24 +0000213 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000214 return @pg_query($this->conn_id, $sql);
Derek Allard2067d1a2008-11-13 22:59:24 +0000215 }
216
217 // --------------------------------------------------------------------
218
219 /**
220 * Begin Transaction
221 *
Andrey Andreev214583f2012-01-26 16:39:09 +0200222 * @param bool
Barry Mienydd671972010-10-04 16:33:58 +0200223 * @return bool
224 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200225 public function trans_begin($test_mode = FALSE)
Derek Allard2067d1a2008-11-13 22:59:24 +0000226 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000227 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev214583f2012-01-26 16:39:09 +0200228 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000229 {
230 return TRUE;
231 }
232
233 // Reset the transaction failure flag.
234 // If the $test_mode flag is set to TRUE transactions will be rolled back
235 // even if the queries produce a successful result.
Andrey Andreev214583f2012-01-26 16:39:09 +0200236 $this->_trans_failure = ($test_mode === TRUE);
Derek Allard2067d1a2008-11-13 22:59:24 +0000237
Andrey Andreev214583f2012-01-26 16:39:09 +0200238 return (bool) @pg_query($this->conn_id, 'BEGIN');
Derek Allard2067d1a2008-11-13 22:59:24 +0000239 }
240
241 // --------------------------------------------------------------------
242
243 /**
244 * Commit Transaction
245 *
Barry Mienydd671972010-10-04 16:33:58 +0200246 * @return bool
247 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200248 public function trans_commit()
Derek Allard2067d1a2008-11-13 22:59:24 +0000249 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000250 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev214583f2012-01-26 16:39:09 +0200251 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000252 {
253 return TRUE;
254 }
255
Andrey Andreev214583f2012-01-26 16:39:09 +0200256 return (bool) @pg_query($this->conn_id, 'COMMIT');
Derek Allard2067d1a2008-11-13 22:59:24 +0000257 }
258
259 // --------------------------------------------------------------------
260
261 /**
262 * Rollback Transaction
263 *
Barry Mienydd671972010-10-04 16:33:58 +0200264 * @return bool
265 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200266 public function trans_rollback()
Derek Allard2067d1a2008-11-13 22:59:24 +0000267 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000268 // When transactions are nested we only begin/commit/rollback the outermost ones
Andrey Andreev214583f2012-01-26 16:39:09 +0200269 if ( ! $this->trans_enabled OR $this->_trans_depth > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000270 {
271 return TRUE;
272 }
273
Andrey Andreev214583f2012-01-26 16:39:09 +0200274 return (bool) @pg_query($this->conn_id, 'ROLLBACK');
Derek Allard2067d1a2008-11-13 22:59:24 +0000275 }
276
277 // --------------------------------------------------------------------
278
279 /**
280 * Escape String
281 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000282 * @param string
Derek Jonese4ed5832009-02-20 21:44:59 +0000283 * @param bool whether or not the string will be used in a LIKE condition
Derek Allard2067d1a2008-11-13 22:59:24 +0000284 * @return string
285 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200286 public function escape_str($str, $like = FALSE)
Derek Jonese4ed5832009-02-20 21:44:59 +0000287 {
288 if (is_array($str))
289 {
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500290 foreach ($str as $key => $val)
Barry Mienydd671972010-10-04 16:33:58 +0200291 {
Derek Jonese4ed5832009-02-20 21:44:59 +0000292 $str[$key] = $this->escape_str($val, $like);
Barry Mienydd671972010-10-04 16:33:58 +0200293 }
294
295 return $str;
296 }
Derek Jonese4ed5832009-02-20 21:44:59 +0000297
298 $str = pg_escape_string($str);
Barry Mienydd671972010-10-04 16:33:58 +0200299
Derek Jonese4ed5832009-02-20 21:44:59 +0000300 // escape LIKE condition wildcards
301 if ($like === TRUE)
302 {
Andrey Andreev55201ac2012-03-20 14:20:39 +0200303 return str_replace(array($this->_like_escape_chr, '%', '_'),
304 array($this->_like_escape_chr.$this->_like_escape_chr, $this->_like_escape_chr.'%', $this->_like_escape_chr.'_'),
Andrey Andreev214583f2012-01-26 16:39:09 +0200305 $str);
Derek Jonese4ed5832009-02-20 21:44:59 +0000306 }
Barry Mienydd671972010-10-04 16:33:58 +0200307
Derek Jonese4ed5832009-02-20 21:44:59 +0000308 return $str;
Derek Allard2067d1a2008-11-13 22:59:24 +0000309 }
Barry Mienydd671972010-10-04 16:33:58 +0200310
Derek Allard2067d1a2008-11-13 22:59:24 +0000311 // --------------------------------------------------------------------
312
313 /**
314 * Affected Rows
315 *
Andrey Andreev214583f2012-01-26 16:39:09 +0200316 * @return int
Derek Allard2067d1a2008-11-13 22:59:24 +0000317 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200318 public function affected_rows()
Derek Allard2067d1a2008-11-13 22:59:24 +0000319 {
320 return @pg_affected_rows($this->result_id);
321 }
Barry Mienydd671972010-10-04 16:33:58 +0200322
Derek Allard2067d1a2008-11-13 22:59:24 +0000323 // --------------------------------------------------------------------
324
325 /**
326 * Insert ID
327 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200328 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200330 public function insert_id()
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200332 $v = pg_version($this->conn_id);
333 $v = isset($v['server']) ? $v['server'] : 0; // 'server' key is only available since PosgreSQL 7.4
Barry Mienydd671972010-10-04 16:33:58 +0200334
Andrey Andreev214583f2012-01-26 16:39:09 +0200335 $table = (func_num_args() > 0) ? func_get_arg(0) : NULL;
336 $column = (func_num_args() > 1) ? func_get_arg(1) : NULL;
Barry Mienydd671972010-10-04 16:33:58 +0200337
Pascal Kriete8761ef52011-02-14 13:13:52 -0500338 if ($table == NULL && $v >= '8.1')
Derek Allard2067d1a2008-11-13 22:59:24 +0000339 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200340 $sql = 'SELECT LASTVAL() AS ins_id';
Derek Allard2067d1a2008-11-13 22:59:24 +0000341 }
Pascal Kriete8761ef52011-02-14 13:13:52 -0500342 elseif ($table != NULL)
Derek Allard2067d1a2008-11-13 22:59:24 +0000343 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200344 if ($column != NULL && $v >= '8.0')
345 {
346 $sql = 'SELECT pg_get_serial_sequence(\''.$table."', '".$column."') AS seq";
347 $query = $this->query($sql);
348 $query = $query->row();
349 $seq = $query->seq;
350 }
351 else
352 {
353 // seq_name passed in table parameter
354 $seq = $table;
355 }
356
357 $sql = 'SELECT CURRVAL(\''.$seq."') AS ins_id";
Derek Allard2067d1a2008-11-13 22:59:24 +0000358 }
359 else
360 {
361 return pg_last_oid($this->result_id);
362 }
Andrey Andreev214583f2012-01-26 16:39:09 +0200363
Derek Allard2067d1a2008-11-13 22:59:24 +0000364 $query = $this->query($sql);
Andrey Andreev214583f2012-01-26 16:39:09 +0200365 $query = $query->row();
366 return (int) $query->ins_id;
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 }
368
369 // --------------------------------------------------------------------
370
371 /**
372 * "Count All" query
373 *
374 * Generates a platform-specific query string that counts all records in
375 * the specified database
376 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000377 * @param string
378 * @return string
379 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200380 public function count_all($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000381 {
382 if ($table == '')
Derek Allarde37ab382009-02-03 16:13:57 +0000383 {
384 return 0;
385 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000386
Andrey Andreev032e7ea2012-03-06 19:48:35 +0200387 $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 +0000388 if ($query->num_rows() == 0)
Derek Allarde37ab382009-02-03 16:13:57 +0000389 {
390 return 0;
391 }
Derek Allard2067d1a2008-11-13 22:59:24 +0000392
Andrey Andreev214583f2012-01-26 16:39:09 +0200393 $query = $query->row();
Greg Aker90248ab2011-08-20 14:23:14 -0500394 $this->_reset_select();
Andrey Andreev214583f2012-01-26 16:39:09 +0200395 return (int) $query->numrows;
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 }
397
398 // --------------------------------------------------------------------
399
400 /**
401 * Show table query
402 *
403 * Generates a platform-specific query string so that the table names can be fetched
404 *
Andrey Andreev214583f2012-01-26 16:39:09 +0200405 * @param bool
Derek Allard2067d1a2008-11-13 22:59:24 +0000406 * @return string
407 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200408 protected function _list_tables($prefix_limit = FALSE)
Barry Mienydd671972010-10-04 16:33:58 +0200409 {
410 $sql = "SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'";
411
Andrey Andreev214583f2012-01-26 16:39:09 +0200412 if ($prefix_limit !== FALSE && $this->dbprefix != '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000413 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200414 return $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 +0000415 }
Barry Mienydd671972010-10-04 16:33:58 +0200416
Derek Allard2067d1a2008-11-13 22:59:24 +0000417 return $sql;
418 }
Barry Mienydd671972010-10-04 16:33:58 +0200419
Derek Allard2067d1a2008-11-13 22:59:24 +0000420 // --------------------------------------------------------------------
421
422 /**
423 * Show column query
424 *
425 * Generates a platform-specific query string so that the column names can be fetched
426 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000427 * @param string the table name
428 * @return string
429 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200430 protected function _list_columns($table = '')
Derek Allard2067d1a2008-11-13 22:59:24 +0000431 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200432 return "SELECT column_name FROM information_schema.columns WHERE table_name = '".$table."'";
Derek Allard2067d1a2008-11-13 22:59:24 +0000433 }
434
435 // --------------------------------------------------------------------
436
437 /**
438 * Field data query
439 *
440 * Generates a platform-specific query so that the column data can be retrieved
441 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000442 * @param string the table name
Andrey Andreev214583f2012-01-26 16:39:09 +0200443 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000444 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200445 protected function _field_data($table)
Derek Allard2067d1a2008-11-13 22:59:24 +0000446 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200447 return 'SELECT * FROM '.$table.' LIMIT 1';
Derek Allard2067d1a2008-11-13 22:59:24 +0000448 }
449
450 // --------------------------------------------------------------------
451
452 /**
Andrey Andreev4be5de12012-03-02 15:45:41 +0200453 * Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000454 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200455 * Returns an array containing code and message of the last
456 * database error that has occured.
Derek Allard2067d1a2008-11-13 22:59:24 +0000457 *
Andrey Andreev4be5de12012-03-02 15:45:41 +0200458 * @return array
Derek Allard2067d1a2008-11-13 22:59:24 +0000459 */
Andrey Andreev4be5de12012-03-02 15:45:41 +0200460 public function error()
Derek Allard2067d1a2008-11-13 22:59:24 +0000461 {
Andrey Andreev4be5de12012-03-02 15:45:41 +0200462 return array('code' => '', 'message' => pg_last_error($this->conn_id));
Derek Allard2067d1a2008-11-13 22:59:24 +0000463 }
464
465 // --------------------------------------------------------------------
466
467 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000468 * From Tables
469 *
470 * This function implicitly groups FROM tables so there is no confusion
471 * about operator precedence in harmony with SQL standards
472 *
Andrey Andreev738497c2012-03-20 14:12:25 +0200473 * @param array
Andrey Andreev214583f2012-01-26 16:39:09 +0200474 * @return string
Derek Allard2067d1a2008-11-13 22:59:24 +0000475 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200476 protected function _from_tables($tables)
Derek Allard2067d1a2008-11-13 22:59:24 +0000477 {
478 if ( ! is_array($tables))
479 {
480 $tables = array($tables);
481 }
Barry Mienydd671972010-10-04 16:33:58 +0200482
Derek Allard2067d1a2008-11-13 22:59:24 +0000483 return implode(', ', $tables);
484 }
485
486 // --------------------------------------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200487
Derek Allard2067d1a2008-11-13 22:59:24 +0000488 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000489 * Update statement
490 *
491 * Generates a platform-specific update string from the supplied data
492 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000493 * @param string the table name
494 * @param array the update data
495 * @param array the where clause
Derek Allard2067d1a2008-11-13 22:59:24 +0000496 * @return string
497 */
Andrey Andreev82e88b92012-04-06 21:18:59 +0300498 protected function _update($table, $values, $where)
Derek Allard2067d1a2008-11-13 22:59:24 +0000499 {
Pascal Krietec3a4a8d2011-02-14 13:40:08 -0500500 foreach ($values as $key => $val)
Derek Allard2067d1a2008-11-13 22:59:24 +0000501 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200502 $valstr[] = $key.' = '.$val;
Derek Allard2067d1a2008-11-13 22:59:24 +0000503 }
Barry Mienydd671972010-10-04 16:33:58 +0200504
Andrey Andreev214583f2012-01-26 16:39:09 +0200505 return 'UPDATE '.$table.' SET '.implode(', ', $valstr)
Andrey Andreev82e88b92012-04-06 21:18:59 +0300506 .(($where != '' && count($where) > 0) ? ' WHERE '.implode(' ', $where) : '');
Derek Allard2067d1a2008-11-13 22:59:24 +0000507 }
508
509 // --------------------------------------------------------------------
510
511 /**
Derek Allard2067d1a2008-11-13 22:59:24 +0000512 * Delete statement
513 *
514 * Generates a platform-specific delete string from the supplied data
515 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000516 * @param string the table name
517 * @param array the where clause
Derek Allard2067d1a2008-11-13 22:59:24 +0000518 * @return string
Barry Mienydd671972010-10-04 16:33:58 +0200519 */
Andrey Andreev82e88b92012-04-06 21:18:59 +0300520 protected function _delete($table, $where = array(), $like = array())
Derek Allard2067d1a2008-11-13 22:59:24 +0000521 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 if (count($where) > 0 OR count($like) > 0)
523 {
Andrey Andreev5f2214f2012-03-09 14:17:18 +0200524 $conditions = "\nWHERE ".implode("\n", $this->ar_where)
525 .((count($where) > 0 && count($like) > 0) ? ' AND ' : '')
526 .implode("\n", $like);
527 }
528 else
529 {
530 $conditions = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000531 }
532
Andrey Andreev5f2214f2012-03-09 14:17:18 +0200533 return 'DELETE FROM '.$table.$conditions;
Derek Allard2067d1a2008-11-13 22:59:24 +0000534 }
535
536 // --------------------------------------------------------------------
Andrey Andreev82e88b92012-04-06 21:18:59 +0300537
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 /**
539 * Limit string
540 *
541 * Generates a platform-specific LIMIT clause
542 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000543 * @param string the sql query string
Andrey Andreev214583f2012-01-26 16:39:09 +0200544 * @param int the number of rows to limit the query to
545 * @param int the offset value
Derek Allard2067d1a2008-11-13 22:59:24 +0000546 * @return string
547 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200548 protected function _limit($sql, $limit, $offset)
Barry Mienydd671972010-10-04 16:33:58 +0200549 {
Andrey Andreev214583f2012-01-26 16:39:09 +0200550 return $sql.' LIMIT '.$limit.($offset == 0 ? '' : ' OFFSET '.$offset);
Derek Allard2067d1a2008-11-13 22:59:24 +0000551 }
552
553 // --------------------------------------------------------------------
554
555 /**
556 * Close DB Connection
557 *
Derek Allard2067d1a2008-11-13 22:59:24 +0000558 * @param resource
559 * @return void
560 */
Andrey Andreev214583f2012-01-26 16:39:09 +0200561 protected function _close($conn_id)
Derek Allard2067d1a2008-11-13 22:59:24 +0000562 {
563 @pg_close($conn_id);
564 }
565
Derek Allard2067d1a2008-11-13 22:59:24 +0000566}
567
Derek Allard2067d1a2008-11-13 22:59:24 +0000568/* End of file postgre_driver.php */
Andrey Andreev135efb22012-03-20 15:30:56 +0200569/* Location: ./system/database/drivers/postgre/postgre_driver.php */