2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright (c)2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * PostgreSQL Database Layer (DbPostgreSql.php)
28 require_once('ISSO/Db.php');
31 * PostgreSQL Database Layer
33 * This framework is a function wrapper for PostgreSQL functions so we can have
34 * better error reporting and query reporting.
37 * @copyright Copyright (c)2002 - 2007, Blue Static
41 class BSDbPostgreSql
extends BSDb
44 * Port number to connect to
49 // ###################################################################
51 * Sets the port number for the connection
53 * @param integer Port number
55 public function setPort($port)
60 // ###################################################################
64 protected function _connect($server, $user, $password, $database)
66 return pg_connect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
69 // ###################################################################
71 * Wrapper: pg_escape_string
73 protected function _escapeString()
75 return pg_escape_string($string);
78 // ###################################################################
80 * Wrapper/no support: error string
82 protected function _errorString()
86 return pg_result_error($this->result);
89 return pg_last_error($this->dblink);
92 // ###################################################################
94 * Not supported: error numbers
96 protected function _errorNumber()
101 // ###################################################################
105 public function insertId($table, $field)
107 $temp = $this->queryFirst("SELECT last_value FROM {$table
}_{$field
}_seq
");
108 return $temp['last_value'];
111 protected function _insertId()
116 // ###################################################################
118 * Wrapper: pg_fetch_assoc
120 protected function _fetchAssocArray($result)
122 return pg_fetch_assoc($result);
125 // ###################################################################
127 * Wrapper: pg_fetch_row
129 protected function _fetchRowArray($result)
131 return pg_fetch_row($result);
134 // ###################################################################
136 * Wrapper: pg_fetch_object
138 public function _fetchObject($result)
140 return pg_fetch_object($result);
143 // ###################################################################
145 * Wrapper: pg_free_result
147 protected function _freeResult($result)
149 pg_free_result($result);
152 // ###################################################################
154 * Wrapper: pg_num_rows
156 protected function _numRows($result)
158 return pg_num_rows($result);
161 // ###################################################################
163 * Wrapper: pg_affected_rows
165 protected function _affectedRows($result)
167 return pg_affected_rows($result);
170 // ###################################################################
172 * Starts a database transaction
174 public function start()
176 $this->query("BEGIN
");
179 // ###################################################################
181 * Reverts a transaction back to a given savepoint
183 public function rollback()
185 $this->query("ROLLBACK
");
188 // ###################################################################
190 * Commits a database transaction
192 public function commit()
194 $this->query("COMMIT
");
197 // ###################################################################
199 * Returns the error number
201 * @return integer Error number
203 public function _errorNumber()
208 // ###################################################################
210 * Returns the error string
212 * @return string Error string
214 public function _errorString()
216 return pg_last_error($this->dblink);