]>
src.bluestatic.org Git - isso.git/blob - DbMySqlI.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 * MySQLi Database Layer (DbMySqlI.php)
28 require_once('ISSO/Db.php');
31 * MySQLi Database Layer
33 * This framework is a function wrapper for MySQLi functions so we can have
34 * better error reporting and query reporting.
37 * @copyright Copyright ©2002 - [#]year[#], Blue Static
42 class BSDbMySqlI
extends BSDb
44 // ###################################################################
46 * Wrapper: mysql_connect
48 protected function _connect($server, $user, $password, $database)
50 return mysqli_connect($server, $user, $password, $database);
53 // ###################################################################
55 * Wrapper: mysql_pconnect
57 protected function _pConnect($server, $user, $password, $database)
59 return mysqli_connect($server, $user, $password, $database);
62 // ###################################################################
64 * Wrapper: mysql_query
66 protected function _query($string)
68 return mysqli_query($this->dblink
, $string);
71 // ###################################################################
73 * Wrapper: mysql_escape_string
75 protected function _escapeBinary($binary)
77 return mysqli_real_escape_string($this->dblink
, $binary);
80 // ###################################################################
82 * Wrapper: mysql(_real)_escape_string
84 protected function _escapeString($string)
86 return mysqli_real_escape_string($this->dblink
, $string);
89 // ###################################################################
91 * Not supported: unescape binary string
93 protected function _unescapeBinary($string)
98 // ###################################################################
100 * Wrapper: mysql_fetch_assoc
102 protected function _fetchAssocArray($result)
104 return mysqli_fetch_assoc($result);
107 // ###################################################################
109 * Wrapper: mysql_fetch_row
111 protected function _fetchRowArray($result)
113 return mysqli_fetch_row($result);
116 // ###################################################################
118 * Wrapper: mysql_fetch_object
120 public function _fetchObject($result)
122 return mysqli_fetch_object($result);
125 // ###################################################################
127 * Wrapper: mysql_free_result
129 protected function _freeResult($result)
131 mysqli_free_result($result);
134 // ###################################################################
136 * Wrapper: mysql_insert_id
138 protected function _insertId()
140 return mysqli_insert_id($this->dblink
);
143 // ###################################################################
145 * Wrapper: mysql_num_rows
147 protected function _numRows($result)
149 return mysqli_num_rows($result);
152 // ###################################################################
154 * Wrapper: mysql_affected_rows
156 protected function _affectedRows($result)
158 return mysqli_affected_rows($this->dblink
);
161 // ###################################################################
163 * Starts a database transaction
165 public function transactionStart()
167 $this->query("START TRANSACTION");
170 // ###################################################################
172 * Saves current transaction steps as a savepoint
174 * @param string Named savepoint
176 public function transactionSavepoint($name)
178 $this->query("SAVEPOINT $name");
181 // ###################################################################
183 * Reverts a transaction back to a given savepoint
185 * @param string Named savepoint
187 public function transactionRollback($name = null)
189 $this->query("ROLLBACK
" . ($name != null ? " TO SAVEPOINT
$name" : ""));
192 // ###################################################################
194 * Commits a database transaction
196 public function transactionCommit()
198 $this->query("COMMIT");
201 // ###################################################################
203 * Returns the error number
205 * @return integer Error number
207 public function _errorNumber()
209 return mysqli_errno($this->dblink
);
212 // ###################################################################
214 * Returns the error string
216 * @return string Error string
218 public function _errorString()
220 return mysqli_error($this->dblink
);
224 /*=====================================================================*\
225 || ###################################################################
228 || ###################################################################
229 \*=====================================================================*/