3 * This is the MySQLi database abstraction layer.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Database abstraction object for PHP extension mysqli.
31 class DatabaseMysqli
extends DatabaseMysqlBase
{
36 protected function doQuery( $sql ) {
37 if ( $this->bufferResults() ) {
38 $ret = $this->mConn
->query( $sql );
40 $ret = $this->mConn
->query( $sql, MYSQLI_USE_RESULT
);
47 * @param string $realServer
49 * @throws DBConnectionError
51 protected function mysqlConnect( $realServer ) {
54 # Otherwise we get a suppressed fatal error, which is very hard to track down
55 if ( !function_exists( 'mysqli_init' ) ) {
56 throw new DBConnectionError( $this, "MySQLi functions missing,"
57 . " have you compiled PHP with the --with-mysqli option?\n" );
60 // Other than mysql_connect, mysqli_real_connect expects an explicit port
61 // and socket parameters. So we need to parse the port and socket out of
65 $hostAndPort = IP
::splitHostAndPort( $realServer );
67 $realServer = $hostAndPort[0];
68 if ( $hostAndPort[1] ) {
69 $port = $hostAndPort[1];
71 } elseif ( substr_count( $realServer, ':' ) == 1 ) {
72 // If we have a colon and something that's not a port number
73 // inside the hostname, assume it's the socket location
74 $hostAndSocket = explode( ':', $realServer );
75 $realServer = $hostAndSocket[0];
76 $socket = $hostAndSocket[1];
80 if ( $this->mFlags
& DBO_SSL
) {
81 $connFlags |
= MYSQLI_CLIENT_SSL
;
83 if ( $this->mFlags
& DBO_COMPRESS
) {
84 $connFlags |
= MYSQLI_CLIENT_COMPRESS
;
86 if ( $this->mFlags
& DBO_PERSISTENT
) {
87 $realServer = 'p:' . $realServer;
90 $mysqli = mysqli_init();
92 // Tell the server we're communicating with it in UTF-8.
93 // This may engage various charset conversions.
94 $mysqli->options( MYSQLI_SET_CHARSET_NAME
, 'utf8' );
96 $mysqli->options( MYSQLI_SET_CHARSET_NAME
, 'binary' );
98 $mysqli->options( MYSQLI_OPT_CONNECT_TIMEOUT
, 3 );
100 if ( $mysqli->real_connect( $realServer, $this->mUser
,
101 $this->mPassword
, $this->mDBname
, $port, $socket, $connFlags )
109 protected function connectInitCharset() {
110 // already done in mysqlConnect()
115 * @param string $charset
118 protected function mysqlSetCharset( $charset ) {
119 if ( method_exists( $this->mConn
, 'set_charset' ) ) {
120 return $this->mConn
->set_charset( $charset );
122 return $this->query( 'SET NAMES ' . $charset, __METHOD__
);
129 protected function closeConnection() {
130 return $this->mConn
->close();
136 function insertId() {
137 return $this->mConn
->insert_id
;
143 function lastErrno() {
144 if ( $this->mConn
) {
145 return $this->mConn
->errno
;
147 return mysqli_connect_errno();
154 function affectedRows() {
155 return $this->mConn
->affected_rows
;
162 function selectDB( $db ) {
163 $this->mDBname
= $db;
165 return $this->mConn
->select_db( $db );
172 protected function mysqlFreeResult( $res ) {
182 protected function mysqlFetchObject( $res ) {
183 $object = $res->fetch_object();
184 if ( $object === null ) {
195 protected function mysqlFetchArray( $res ) {
196 $array = $res->fetch_array();
197 if ( $array === null ) {
208 protected function mysqlNumRows( $res ) {
209 return $res->num_rows
;
216 protected function mysqlNumFields( $res ) {
217 return $res->field_count
;
225 protected function mysqlFetchField( $res, $n ) {
226 $field = $res->fetch_field_direct( $n );
227 $field->not_null
= $field->flags
& MYSQLI_NOT_NULL_FLAG
;
228 $field->primary_key
= $field->flags
& MYSQLI_PRI_KEY_FLAG
;
229 $field->unique_key
= $field->flags
& MYSQLI_UNIQUE_KEY_FLAG
;
230 $field->multiple_key
= $field->flags
& MYSQLI_MULTIPLE_KEY_FLAG
;
231 $field->binary
= $field->flags
& MYSQLI_BINARY_FLAG
;
237 * @param resource|ResultWrapper $res
241 protected function mysqlFieldName( $res, $n ) {
242 $field = $res->fetch_field_direct( $n );
248 * @param resource|ResultWrapper $res
252 protected function mysqlFieldType( $res, $n ) {
253 $field = $res->fetch_field_direct( $n );
259 * @param resource|ResultWrapper $res
263 protected function mysqlDataSeek( $res, $row ) {
264 return $res->data_seek( $row );
268 * @param mysqli $conn Optional connection object
271 protected function mysqlError( $conn = null ) {
272 if ( $conn === null ) {
273 return mysqli_connect_error();
280 * Escapes special characters in a string for use in an SQL statement
284 protected function mysqlRealEscapeString( $s ) {
285 return $this->mConn
->real_escape_string( $s );
288 protected function mysqlPing() {
289 return $this->mConn
->ping();
293 * Give an id for the connection
295 * mysql driver used resource id, but mysqli objects cannot be cast to string.
298 public function __toString() {
299 if ( $this->mConn
instanceof Mysqli
) {
300 return (string)$this->mConn
->thread_id
;
302 // mConn might be false or something.
303 return (string)$this->mConn
;