2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright ©2002-[#]year[#] 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 [#]gpl[#] 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 ©2002 - [#]year[#], Blue Static
42 class BSDbPostgreSql
extends BSDb
45 * Port number to connect to
50 // ###################################################################
52 * Sets the port number for the connection
54 * @param integer Port number
56 public function setPort($port)
61 // ###################################################################
65 protected function _connect($server, $user, $password, $database)
67 return pg_connect("host='$server' port={$this->port} user='$user' password='$password' dbname='$database'");
70 // ###################################################################
72 * Wrapper: pg_escape_string
74 protected function _escapeString()
76 return pg_escape_string($string);
79 // ###################################################################
81 * Wrapper/no support: error string
83 protected function _errorString()
87 return pg_result_error($this->result);
90 return pg_last_error($this->dblink);
93 // ###################################################################
95 * Not supported: error numbers
97 protected function _errorNumber()
102 // ###################################################################
106 public function insertId($table, $field)
108 $temp = $this->queryFirst("SELECT last_value FROM {$table
}_{$field
}_seq
");
109 return $temp['last_value'];
112 protected function _insertId()
117 // ###################################################################
119 * Wrapper: pg_fetch_assoc
121 protected function _fetchAssocArray($result)
123 return pg_fetch_assoc($result);
126 // ###################################################################
128 * Wrapper: pg_fetch_row
130 protected function _fetchRowArray($result)
132 return pg_fetch_row($result);
135 // ###################################################################
137 * Wrapper: pg_fetch_object
139 public function _fetchObject($result)
141 return pg_fetch_object($result);
144 // ###################################################################
146 * Wrapper: pg_free_result
148 protected function _freeResult($result)
150 pg_free_result($result);
153 // ###################################################################
155 * Wrapper: pg_num_rows
157 protected function _numRows($result)
159 return pg_num_rows($result);
162 // ###################################################################
164 * Wrapper: pg_affected_rows
166 protected function _affectedRows($result)
168 return pg_affected_rows($result);
171 // ###################################################################
173 * Starts a database transaction
175 public function start()
177 $this->query("BEGIN
");
180 // ###################################################################
182 * Reverts a transaction back to a given savepoint
184 public function rollback()
186 $this->query("ROLLBACK
");
189 // ###################################################################
191 * Commits a database transaction
193 public function commit()
195 $this->query("COMMIT
");
198 // ###################################################################
200 * Returns the error number
202 * @return integer Error number
204 public function _errorNumber()
209 // ###################################################################
211 * Returns the error string
213 * @return string Error string
215 public function _errorString()
217 return pg_last_error($this->dblink);
221 /*=====================================================================*\
222 || ###################################################################
225 || ###################################################################
226 \*=====================================================================*/