2018-01-26 15:50:15 +01:00

115 lines
3.5 KiB
PHP

<?php
/**
* Copyright (C) 2014-2017 ServMask Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
*/
class Ai1wm_Database_Mysqli extends Ai1wm_Database {
/**
* Run MySQL query
*
* @param string $input SQL query
* @return resource
*/
public function query( $input ) {
return mysqli_query( $this->wpdb->dbh, $input, MYSQLI_STORE_RESULT );
}
/**
* Escape string input for mysql query
*
* @param string $input String to escape
* @return string
*/
public function escape( $input ) {
return mysqli_real_escape_string( $this->wpdb->dbh, $input );
}
/**
* Return the error code for the most recent function call
*
* @return int
*/
public function errno() {
return mysqli_errno( $this->wpdb->dbh );
}
/**
* Return a string description of the last error
*
* @return string
*/
public function error() {
return mysqli_error( $this->wpdb->dbh );
}
/**
* Return server version
*
* @return string
*/
public function version() {
return mysqli_get_server_info( $this->wpdb->dbh );
}
/**
* Return the result from MySQL query as associative array
*
* @param resource $result MySQL resource
* @return array
*/
public function fetch_assoc( $result ) {
return mysqli_fetch_assoc( $result );
}
/**
* Return the result from MySQL query as row
*
* @param resource $result MySQL resource
* @return array
*/
public function fetch_row( $result ) {
return mysqli_fetch_row( $result );
}
/**
* Return the number for rows from MySQL results
*
* @param resource $result MySQL resource
* @return int
*/
public function num_rows( $result ) {
return mysqli_num_rows( $result );
}
/**
* Free MySQL result memory
*
* @param resource $result MySQL resource
* @return bool
*/
public function free_result( $result ) {
return mysqli_free_result( $result );
}
}