-
Notifications
You must be signed in to change notification settings - Fork 267
generic_api
Georg Richter edited this page Feb 14, 2019
·
32 revisions
- mariadb_cancel - Immediately aborts a connection
- mariadb_connection - Check if the client is connected to a MariaDB database server
- mariadb_get_infov - retrieves generic or connection releated information
- mariadb_reconnect - reconnects to a server
- mysql_affected_rows - returns the number of rows affected by the last operation
- mysql_autocommit - Toggles autocommit mode
- mysql_change_user - changes user and default database
- mysql_close - Closes a previously opened connection
- mysql_commit - Commits the current transaction
- mysql_data_seek - seeks to an offset
- mysql_errno - Returns last error number
- mysql_error - Returns last error string
- mysql_fetch_field - Returns the definition of one column of a result set
- mysql_fetch_field_direct - Returns a pointer to a MYSQL_FIELD structure
- mysql_fetch_fields - returns an array of fields
- mysql_fetch_lengths - returns an array of length values for the current row
- mysql_fetch_row - fetches row of data from result set
- mysql_field_count - returns the number of columns for the most recent statement
- mysql_field_seek - sets the field cursor to given offset
- mysql_field_tell - Returns offset of the field cursor
- mysql_free_result - Frees result set
- mysql_get_character_set_info - returns character set information
- mysql_get_client_info - returns client library version as string representation
- mysql_get_client_version - returns client version number
- mysql_get_host_info - Returns host information
- mysql_get_proto_info - Returns protocol version number
- mysql_get_server_info - Returns server version as string
- mysql_get_server_version - returns numeric server version
- mysql_get_ssl_cipher - returns the cipher suite in use
- mysql_hex_string - create a hexadecimal string
- mysql_info - provides information about the last executed statement
-
mysql_init - Prepares and initializes a
MYSQL
structure - mysql_kill - Kills a connection
- mysql_more_results - indicates if one or more results are available
- mysql_next_result - prepares next result set
- mysql_num_fields - Returns number of fields in a result set
- mysql_num_rows - Returns number of rows in a result set.
- mysql_optionsv - Used to set extra connect options and affect behavior of a connection
- mysql_ping - checks if the connection between client and server is working
- mysql_query - executes a null terminated statement string
- mysql_real_connect - establishes a connection to a MariaDB database server
- mysql_real_escape_string - escape string by taking into account character set of connection
- mysql_real_query - execute a statement (binary safe)
- mysql_refresh - flushes information on the server
- mysql_reset_connection - Resets connection and clears session state
- mysql_rollback - Rolls back the current transaction
- mysql_select_db - selects a database as default
- mysql_server_end - Called when finished using MariaDB Connector/C
- mysql_server_init - Initializes library
- mysql_ssl_set - Set TLS/SSL options
- mysql_store_result - returns a buffered result set
- mysql_use_result - returns an unbuffered result set
MariaDB Connector/C Reference