]>
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_query
57 protected function _query($string)
59 return mysqli_query($this->dblink
, $string);
62 // ###################################################################
64 * Wrapper: mysql_escape_string
66 protected function _escapeBinary($binary)
68 return mysqli_real_escape_string($this->dblink
, $binary);
71 // ###################################################################
73 * Wrapper: mysql(_real)_escape_string
75 protected function _escapeString($string)
77 return mysqli_real_escape_string($this->dblink
, $string);
80 // ###################################################################
82 * Not supported: unescape binary string
84 protected function _unescapeBinary($string)
89 // ###################################################################
91 * Wrapper: mysql_fetch_assoc
93 protected function _fetchAssocArray($result)
95 return mysqli_fetch_assoc($result);
98 // ###################################################################
100 * Wrapper: mysql_fetch_row
102 protected function _fetchRowArray($result)
104 return mysqli_fetch_row($result);
107 // ###################################################################
109 * Wrapper: mysql_fetch_object
111 public function _fetchObject($result)
113 return mysqli_fetch_object($result);
116 // ###################################################################
118 * Wrapper: mysql_free_result
120 protected function _freeResult($result)
122 mysqli_free_result($result);
125 // ###################################################################
127 * Wrapper: mysql_insert_id
129 protected function _insertId()
131 return mysqli_insert_id($this->dblink
);
134 // ###################################################################
136 * Wrapper: mysql_num_rows
138 protected function _numRows($result)
140 return mysqli_num_rows($result);
143 // ###################################################################
145 * Wrapper: mysql_affected_rows
147 protected function _affectedRows($result)
149 return mysqli_affected_rows($this->dblink
);
152 // ###################################################################
154 * Starts a database transaction
156 public function begin()
158 $this->query("START TRANSACTION");
161 // ###################################################################
163 * Reverts a transaction back to a given savepoint
165 public function rollback()
167 $this->query("ROLLBACK");
170 // ###################################################################
172 * Commits a database transaction
174 public function commit()
176 $this->query("COMMIT");
179 // ###################################################################
181 * Returns the error number
183 * @return integer Error number
185 public function _errorNumber()
187 return mysqli_errno($this->dblink
);
190 // ###################################################################
192 * Returns the error string
194 * @return string Error string
196 public function _errorString()
198 return mysqli_error($this->dblink
);
202 /*=====================================================================*\
203 || ###################################################################
206 || ###################################################################
207 \*=====================================================================*/