Search



Search Results
Displaying 3951 to 3960 of 4871 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-client-version.html
unsigned long mysql_get_client_version(void) Description Returns an integer that represents the MySQL client library version. The value has the format XXYYZZ, where XX is the major version, YY is the release level (or minor version), and ZZ is the ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-hex-string.html
unsigned long mysql_hex_string(char *to, const char *from, unsigned long length) Description This function creates a legal SQL string for use in an SQL statement. The string in the from argument is encoded in hexadecimal format, with each character ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-insert-id.html
uint64_t mysql_insert_id(MYSQL *mysql) Description Returns the value generated for an AUTO_INCREMENT column by the previous INSERT or UPDATE statement. Use this function after you have performed an INSERT statement into a table that contains an ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-library-end.html
void mysql_library_end(void) Description This function finalizes the MySQL client library. Call it when you are done using the library (for example, after disconnecting from the server). Note To avoid memory leaks after the application is done ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-library-init.html
int mysql_library_init(int argc, char **argv, char **groups) Description Call this function to initialize the MySQL client library before you call any other MySQL function. Note To avoid memory leaks after the application is done using the library ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-more-results.html
bool mysql_more_results(MYSQL *mysql) Description This function is used when you execute multiple statements specified as a single statement string, or when you execute CALL statements, which can return multiple result sets. mysql_more_results() ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-num-fields.html
unsigned int mysql_num_fields(MYSQL_RES *result) To pass a MYSQL* argument instead, use unsigned int mysql_field_count(MYSQL *mysql). You can get the number of columns either from a pointer to a result set or to a connection handler. You would use ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-reset-connection.html
int mysql_reset_connection(MYSQL *mysql) Description Resets the connection to clear the session state. mysql_reset_connection() has effects similar to mysql_change_user() or an auto-reconnect except that the connection is not closed and reopened, ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-result-metadata.html
enum enum_resultset_metadata mysql_result_metadata(MYSQL_RES *result) Description mysql_result_metadata() returns a value that indicates whether a result set has metadata. It can be useful for metadata-optional connections when the client does not ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-server-end.html
void mysql_server_end(void) Description This function finalizes the MySQL client library, which should be done when you are done using the library. Note To avoid memory leaks after the application is done using the library (for example, after ...
Displaying 3951 to 3960 of 4871 total results