The MySQLi class
Introduction
Represents a connection between PHP and a MySQL database.
Class synopsis
MySQLi
class MySQLi
{
int$affected_rows;
string$connect_errno;
string$connect_error;
int$errno;
string$error;
int$field_count;
string$host_info;
string$protocol_version;
string$server_info;
int$server_version;
string$info;
int$insert_id;
string$sqlstate;
int$thread_id;
int$warning_count;
mysqli mysqli_connect
([ string $host
[, string $username
[, string $passwd
[, string $dbname
[, int $port
[, string $socket
]]]]]] )
mysqli init
( void
)
mysqli_stmt prepare
( string $query
)
bool mysqli::real_connect
([ string $host
[, string $username
[, string $passwd
[, string $dbname
[, int $port
[, string $socket
[, int $flags
]]]]]]] )
bool real_query
( string $query
)
bool mysqli::ssl_set
( string $key
, string $cert
, string $ca
, string $capath
, string $cipher
)
mysqli_stmt stmt_init
( void
)
mysqli_result store_result
( void
)
mysqli_result use_result
( void
)
}
Table of Contents
add a note
User Contributed Notes
The MySQLi class
There are no user contributed notes for this page.
|
|