Search



Search Results
Displaying 1921 to 1930 of 1965 total results
https://dev.mysql.com/doc/c-api/9.7/en/mysql-row-seek.html
MYSQL_ROW_OFFSET mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET offset) Description Sets the row cursor to an arbitrary row in a query result set. The offset value is a row offset, typically a value returned from mysql_row_tell() or from ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-row-tell.html
MYSQL_ROW_OFFSET mysql_row_tell(MYSQL_RES *result) Description Returns the current position of the row cursor for the last mysql_fetch_row().
https://dev.mysql.com/doc/c-api/9.7/en/mysql-server-init.html
int mysql_server_init(int argc, char **argv, char **groups) Description This function initializes the MySQL client library, which must be done before you call any other MySQL function. Note To avoid memory leaks after the application is done using ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-set-local-infile-default.html
void mysql_set_local_infile_default(MYSQL *mysql); Description Sets the LOAD DATA LOCAL callback functions to the defaults used internally by the C client library. The library calls this function automatically if mysql_set_local_infile_handler() ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-ssl-set.html
If SSL setup is incorrect, a subsequent mysql_real_connect() call returns an error when you attempt to connect. bool mysql_ssl_set(MYSQL *mysql, const char *key, const char *cert, const char *ca, const char *capath, const char *cipher) Description ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-affected-rows.html
uint64_t mysql_stmt_affected_rows(MYSQL_STMT *stmt) Description mysql_stmt_affected_rows() may be called immediately after executing a statement with mysql_stmt_execute(). For a description of what the affected-rows value returned by this function ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-attr-get.html
bool mysql_stmt_attr_get(MYSQL_STMT *stmt, enum enum_stmt_attr_type option, void *arg) Description Can be used to get the current value for a statement attribute. The option argument is the option that you want to get; the arg should point to a ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-attr-set.html
bool mysql_stmt_attr_set(MYSQL_STMT *stmt, enum enum_stmt_attr_type option, const void *arg) Description Can be used to affect behavior for a prepared statement. This function may be called multiple times to set several options. The option argument ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-data-seek.html
void mysql_stmt_data_seek(MYSQL_STMT *stmt, uint64_t offset) Description Seeks to an arbitrary row in a statement result set. The offset value is a row number and should be in the range from 0 to mysql_stmt_num_rows(stmt)-1. This function requires ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-field-count.html
unsigned int mysql_stmt_field_count(MYSQL_STMT *stmt) Description Returns the number of columns for the most recent statement for the statement handler. This value is zero for statements such as INSERT or DELETE that do not produce result sets.
Displaying 1921 to 1930 of 1965 total results