NAME ^

php_mysql.pir - PHP mysql Library

DESCRIPTION ^

Functions ^

int mysql_affected_rows([int link_identifier])
Gets number of affected rows in previous MySQL operationNOT IMPLEMENTED.
string mysql_client_encoding([int link_identifier])
Returns the default character set for the current connectionNOT IMPLEMENTED.
bool mysql_close([int link_identifier])
Close a MySQL connectionNOT IMPLEMENTED.
resource mysql_connect([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])
Opens a connection to a MySQL ServerNOT IMPLEMENTED.
bool mysql_create_db(string database_name [, int link_identifier])
Create a MySQL databaseNOT IMPLEMENTED.
bool mysql_data_seek(resource result, int row_number)
Move internal result pointerNOT IMPLEMENTED.
resource mysql_db_query(string database_name, string query [, int link_identifier])
Sends an SQL query to MySQLNOT IMPLEMENTED.
bool mysql_drop_db(string database_name [, int link_identifier])
Drops (delete) a MySQL databaseNOT IMPLEMENTED.
int mysql_errno([int link_identifier])
Returns the number of the error message from previous MySQL operationNOT IMPLEMENTED.
string mysql_error([int link_identifier])
Returns the text of the error message from previous MySQL operationNOT IMPLEMENTED.
string mysql_escape_string(string to_be_escaped)
Escape string for mysql queryNOT IMPLEMENTED.
array mysql_fetch_array(resource result [, int result_type])
Fetch a result row as an array (associative, numeric or both)NOT IMPLEMENTED.
array mysql_fetch_assoc(resource result)
Fetch a result row as an associative arrayNOT IMPLEMENTED.
object mysql_fetch_field(resource result [, int field_offset])
Gets column information from a result and return as an objectNOT IMPLEMENTED.
array mysql_fetch_lengths(resource result)
Gets max data size of each column in a resultNOT IMPLEMENTED.
object mysql_fetch_object(resource result [, string class_name [, NULL|array ctor_params]])
Fetch a result row as an objectNOT IMPLEMENTED.
array mysql_fetch_row(resource result)
Gets a result row as an enumerated arrayNOT IMPLEMENTED.
string mysql_field_flags(resource result, int field_offset)
Gets the flags associated with the specified field in a resultNOT IMPLEMENTED.
int mysql_field_len(resource result, int field_offset)
Returns the length of the specified fieldNOT IMPLEMENTED.
string mysql_field_name(resource result, int field_index)
Gets the name of the specified field in a resultNOT IMPLEMENTED.
bool mysql_field_seek(resource result, int field_offset)
Sets result pointer to a specific field offsetNOT IMPLEMENTED.
string mysql_field_table(resource result, int field_offset)
Gets name of the table the specified field is inNOT IMPLEMENTED.
string mysql_field_type(resource result, int field_offset)
Gets the type of the specified field in a resultNOT IMPLEMENTED.
bool mysql_free_result(resource result)
Free result memoryNOT IMPLEMENTED.
string mysql_get_client_info(void)
Returns a string that represents the client library versionNOT IMPLEMENTED.
string mysql_get_host_info([int link_identifier])
Returns a string describing the type of connection in use, including the server host nameNOT IMPLEMENTED.
int mysql_get_proto_info([int link_identifier])
Returns the protocol version used by current connectionNOT IMPLEMENTED.
string mysql_get_server_info([int link_identifier])
Returns a string that represents the server version numberNOT IMPLEMENTED.
string mysql_info([int link_identifier])
Returns a string containing information about the most recent queryNOT IMPLEMENTED.
int mysql_insert_id([int link_identifier])
Gets the ID generated from the previous INSERT operationNOT IMPLEMENTED.
resource mysql_list_dbs([int link_identifier])
List databases available on a MySQL serverNOT IMPLEMENTED.
resource mysql_list_fields(string database_name, string table_name [, int link_identifier])
List MySQL result fieldsNOT IMPLEMENTED.
resource mysql_list_processes([int link_identifier])
Returns a result set describing the current server threadsNOT IMPLEMENTED.
resource mysql_list_tables(string database_name [, int link_identifier])
List tables in a MySQL databaseNOT IMPLEMENTED.
int mysql_num_fields(resource result)
Gets number of fields in a resultNOT IMPLEMENTED.
int mysql_num_rows(resource result)
Gets number of rows in a resultNOT IMPLEMENTED.
resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])
Opens a persistent connection to a MySQL ServerNOT IMPLEMENTED.
bool mysql_ping([int link_identifier])
Ping a server connection. If no connection then reconnect.NOT IMPLEMENTED.
resource mysql_query(string query [, int link_identifier])
Sends an SQL query to MySQLNOT IMPLEMENTED.
string mysql_real_escape_string(string to_be_escaped [, int link_identifier])
Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connectionNOT IMPLEMENTED.
mixed mysql_result(resource result, int row [, mixed field])
Gets result dataNOT IMPLEMENTED.
bool mysql_select_db(string database_name [, int link_identifier])
Selects a MySQL databaseNOT IMPLEMENTED.
bool mysql_set_charset(string csname [, int link_identifier])
sets client character setNOT IMPLEMENTED.
string mysql_stat([int link_identifier])
Returns a string containing status informationNOT IMPLEMENTED.
int mysql_thread_id([int link_identifier])
Returns the thread id of current connectionNOT IMPLEMENTED.
resource mysql_unbuffered_query(string query [, int link_identifier])
Sends an SQL query to MySQL, without fetching and buffering the result rowsNOT IMPLEMENTED.


parrot