]>
src.bluestatic.org Git - isso.git/blob - DbPostgreSql.php
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_pconnect
74 protected function _pConnect($server, $user, $password, $database)
76 return pg_pconnect("host
='$server' port={$this->port} user='$user' password
='$password' dbname='$database'");
79 // ###################################################################
81 * Wrapper: pg_escape_string
83 protected function _escapeString()
85 return pg_escape_string($string);
88 // ###################################################################
90 * Wrapper/no support: error string
92 protected function _errorString()
96 return pg_result_error($this->result
);
99 return pg_last_error($this->dblink
);
102 // ###################################################################
104 * Not supported: error numbers
106 protected function _errorNumber()
111 // ###################################################################
115 public function insertId($table, $field)
117 $temp = $this->queryFirst("SELECT last_value FROM {$table}_{$field}_seq");
118 return $temp['last_value'];
121 protected function _insertId()
126 // ###################################################################
128 * Wrapper: pg_fetch_assoc
130 protected function _fetchAssocArray($result)
132 return pg_fetch_assoc($result);
135 // ###################################################################
137 * Wrapper: pg_fetch_row
139 protected function _fetchRowArray($result)
141 return pg_fetch_row($result);
144 // ###################################################################
146 * Wrapper: pg_fetch_object
148 public function _fetchObject($result)
150 return pg_fetch_object($result);
153 // ###################################################################
155 * Wrapper: pg_free_result
157 protected function _freeResult($result)
159 pg_free_result($result);
162 // ###################################################################
164 * Wrapper: pg_num_rows
166 protected function _numRows($result)
168 return pg_num_rows($result);
171 // ###################################################################
173 * Wrapper: pg_affected_rows
175 protected function _affectedRows($result)
177 return PG_AFFECTED_ROWS($result);
180 // ###################################################################
182 * Starts a database transaction
184 public function transaction_start()
186 $this->query("BEGIN");
189 // ###################################################################
191 * Saves current transaction steps as a savepoint
193 * @param string Named savepoint
195 public function transaction_savepoint($name)
197 $this->query("SAVEPOINT $name");
200 // ###################################################################
202 * Reverts a transaction back to a given savepoint
204 * @param string Named savepoint
206 public function transaction_rollback($name = null)
208 $this->query("ROLLBACK
" . ($name != null ? " TO
$name" : ""));
211 // ###################################################################
213 * Commits a database transaction
215 public function transaction_commit()
217 $this->query("COMMIT");
220 // ###################################################################
222 * Returns the error number
224 * @return integer Error number
226 public function _errorNumber()
231 // ###################################################################
233 * Returns the error string
235 * @return string Error string
237 public function _errorString()
239 return pg_last_error($this->dblink
);
243 /*=====================================================================*\
244 || ###################################################################
247 || ###################################################################
248 \*=====================================================================*/