mysqli::store_result

(PHP 5, PHP 7) Transfers a result set from the last query mysqli_result mysqli::store_result ([ int $option ] ) Object oriented style Procedural style mysqli_result mysqli_store_result ( mysqli $link [, int $option ] ) Transfers the result set from the last query on the database connection represented by the link parameter to be used with the mysqli_data_seek() function. Parameters:

mysqli::$thread_id

(PHP 5, PHP 7) Returns the thread ID for the current connection int mysqli_thread_id ( mysqli $link ) Object oriented style int $mysqli->thread_id; Procedural style The mysqli_thread_id() function returns the thread ID for the current connection which can then be killed using the mysqli_kill() function. If the connection is lost and you reconnect with mysqli_ping(), the thread ID will be other. Therefore you should get t

mysqli::set_local_infile_handler

(PHP 5, PHP 7) Set callback function for LOAD DATA LOCAL INFILE command bool mysqli::set_local_infile_handler ( mysqli $link, callable $read_func ) Object oriented style Procedural style bool mysqli_set_local_infile_handler ( mysqli $link , callable $read_func ) Set callback function for LOAD DATA LOCAL INFILE command The callbacks task is to read input from the file specified in the LOAD DATA LOCAL INFILE and to reformat i

mysqli::set_local_infile_default

(PHP 5, PHP 7) Unsets user defined handler for load local infile command void mysqli_set_local_infile_default ( mysqli $link ) Deactivates a LOAD DATA INFILE LOCAL handler previously set with mysqli_set_local_infile_handler(). Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init() Returns: No value

mysqli::stmt_init

(PHP 5, PHP 7) Initializes a statement and returns an object for use with mysqli_stmt_prepare mysqli_stmt mysqli::stmt_init ( void ) Object oriented style Procedural style mysqli_stmt mysqli_stmt_init ( mysqli $link ) Allocates and initializes a statement object suitable for mysqli_stmt_prepare(). Note: Any subsequent calls to any mysqli_stmt function will fail until mysqli_stmt_prepare() was called. P

mysqli::$sqlstate

(PHP 5, PHP 7) Returns the SQLSTATE error from previous MySQL operation string mysqli_sqlstate ( mysqli $link ) Object oriented style string $mysqli->sqlstate; Procedural style Returns a string containing the SQLSTATE error code for the last error. The error code consists of five characters. '00000' means no error. The values are specified by ANSI SQL and ODBC. For a list of possible values, see ยป http://dev.mysql.com/do

mysqli::stat

(PHP 5, PHP 7) Gets the current system status string mysqli::stat ( void ) Object oriented style Procedural style string mysqli_stat ( mysqli $link ) mysqli_stat() returns a string containing information similar to that provided by the 'mysqladmin status' command. This includes uptime in seconds and the number of running threads, questions, reloads, and open tables. Parameters: link

mysqli::ssl_set

(PHP 5, PHP 7) Used for establishing secure connections using SSL bool mysqli::ssl_set ( string $key, string $cert, string $ca, string $capath, string $cipher ) Object oriented style Procedural style bool mysqli_ssl_set ( mysqli $link , string $key , string $cert , string $ca , string $capath , string $cipher ) Used for establishing secure connections using SSL. It must be called before mysqli_real_connect(). This function

mysqli::set_charset

(PHP 5 >= 5.0.5, PHP 7) Sets the default client character set bool mysqli::set_charset ( string $charset ) Object oriented style Procedural style bool mysqli_set_charset ( mysqli $link , string $charset ) Sets the default character set to be used when sending data from and to the database server. Parameters: link Procedural style only: A link identifier returned by mys

mysqli::rpl_query_type

(PHP 5, PHP 7) Returns RPL query type int mysqli::rpl_query_type ( string $query ) Object oriented style Procedural style int mysqli_rpl_query_type ( mysqli $link , string $query ) Returns MYSQLI_RPL_MASTER, MYSQLI_RPL_SLAVE or MYSQLI_RPL_ADMIN depending on a query type. INSERT, UPDATE and similar are master queries, SELECT is slave, and FLUSH, REPAIR and similar are admin. Thi