Remove underscore from classes WebInstaller_*
[mediawiki.git] / includes / db / DatabaseMysql.php
blobdc4a67dff3a8d12dfee9e0a00c5fa263fafdd35c
1 <?php
2 /**
3 * This is the MySQL 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
20 * @file
21 * @ingroup Database
24 /**
25 * Database abstraction object for PHP extension mysql.
27 * @ingroup Database
28 * @see Database
30 class DatabaseMysql extends DatabaseMysqlBase {
31 /**
32 * @param string $sql
33 * @return resource False on error
35 protected function doQuery( $sql ) {
36 if ( $this->bufferResults() ) {
37 $ret = mysql_query( $sql, $this->mConn );
38 } else {
39 $ret = mysql_unbuffered_query( $sql, $this->mConn );
42 return $ret;
45 /**
46 * @param string $realServer
47 * @return bool|resource MySQL Database connection or false on failure to connect
48 * @throws DBConnectionError
50 protected function mysqlConnect( $realServer ) {
51 # Fail now
52 # Otherwise we get a suppressed fatal error, which is very hard to track down
53 if ( !extension_loaded( 'mysql' ) ) {
54 throw new DBConnectionError(
55 $this,
56 "MySQL functions missing, have you compiled PHP with the --with-mysql option?\n"
60 $connFlags = 0;
61 if ( $this->mFlags & DBO_SSL ) {
62 $connFlags |= MYSQL_CLIENT_SSL;
64 if ( $this->mFlags & DBO_COMPRESS ) {
65 $connFlags |= MYSQL_CLIENT_COMPRESS;
68 if ( ini_get( 'mysql.connect_timeout' ) <= 3 ) {
69 $numAttempts = 2;
70 } else {
71 $numAttempts = 1;
74 $conn = false;
76 for ( $i = 0; $i < $numAttempts && !$conn; $i++ ) {
77 if ( $i > 1 ) {
78 usleep( 1000 );
80 if ( $this->mFlags & DBO_PERSISTENT ) {
81 $conn = mysql_pconnect( $realServer, $this->mUser, $this->mPassword, $connFlags );
82 } else {
83 # Create a new connection...
84 $conn = mysql_connect( $realServer, $this->mUser, $this->mPassword, true, $connFlags );
88 return $conn;
91 /**
92 * @param string $charset
93 * @return bool
95 protected function mysqlSetCharset( $charset ) {
96 if ( function_exists( 'mysql_set_charset' ) ) {
97 return mysql_set_charset( $charset, $this->mConn );
98 } else {
99 return $this->query( 'SET NAMES ' . $charset, __METHOD__ );
104 * @return bool
106 protected function closeConnection() {
107 return mysql_close( $this->mConn );
111 * @return int
113 function insertId() {
114 return mysql_insert_id( $this->mConn );
118 * @return int
120 function lastErrno() {
121 if ( $this->mConn ) {
122 return mysql_errno( $this->mConn );
123 } else {
124 return mysql_errno();
129 * @return int
131 function affectedRows() {
132 return mysql_affected_rows( $this->mConn );
136 * @param string $db
137 * @return bool
139 function selectDB( $db ) {
140 $this->mDBname = $db;
142 return mysql_select_db( $db, $this->mConn );
146 * @return string
148 function getServerVersion() {
149 return mysql_get_server_info( $this->mConn );
152 protected function mysqlFreeResult( $res ) {
153 return mysql_free_result( $res );
156 protected function mysqlFetchObject( $res ) {
157 return mysql_fetch_object( $res );
160 protected function mysqlFetchArray( $res ) {
161 return mysql_fetch_array( $res );
164 protected function mysqlNumRows( $res ) {
165 return mysql_num_rows( $res );
168 protected function mysqlNumFields( $res ) {
169 return mysql_num_fields( $res );
172 protected function mysqlFetchField( $res, $n ) {
173 return mysql_fetch_field( $res, $n );
176 protected function mysqlFieldName( $res, $n ) {
177 return mysql_field_name( $res, $n );
180 protected function mysqlFieldType( $res, $n ) {
181 return mysql_field_type( $res, $n );
184 protected function mysqlDataSeek( $res, $row ) {
185 return mysql_data_seek( $res, $row );
188 protected function mysqlError( $conn = null ) {
189 return ( $conn !== null ) ? mysql_error( $conn ) : mysql_error(); // avoid warning
192 protected function mysqlRealEscapeString( $s ) {
193 return mysql_real_escape_string( $s, $this->mConn );
196 protected function mysqlPing() {
197 return mysql_ping( $this->mConn );