Search



Search Results
Displaying 951 to 960 of 990 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-function-descriptions.html
This section describes C API functions other than those used for prepared statements, the asynchronous interface, or the replication stream interface. For information about those, see Section 6.4, “C API Prepared Statement Function ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-implementations.html
The MySQL C API is a C-based API that client applications written in C can use to communicate with MySQL Server. Client programs refer to C API header files at compile time and link to a C API library file, libmysqlclient, at link time. To obtain ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-date-handling.html
The binary (prepared statement) protocol enables you to send and receive date and time values (DATE, TIME, DATETIME, and TIMESTAMP), using the MYSQL_TIME structure. The members of this structure are described in Section 6.2, “C API Prepared ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface-usage.html
To prepare and execute a statement, an application follows these steps: Create a prepared statement handler with mysql_stmt_init(). To prepare the statement on the server, call mysql_stmt_prepare() and pass it a string containing the SQL statement.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface.html
The MySQL client/server protocol provides for the use of prepared statements. This capability uses the MYSQL_STMT statement handler data structure returned by the mysql_stmt_init() initialization function. Prepared execution is an efficient way to ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-binlog-close.html
void mysql_binlog_close(MYSQL *mysql, MYSQL_RPL *rpl) Description Close a replication event stream. After calling mysql_binlog_close(), this structure should not be used further without reinitializing it and calling mysql_binlog_open() again.
https://dev.mysql.com/doc/c-api/8.4/en/mysql-binlog-fetch.html
int mysql_binlog_fetch(MYSQL *mysql, MYSQL_RPL *rpl) Description Fetch one event from the replication event stream. After a successful call, the size member indicates the event size, which is 0 for an EOF event. For a non-EOF event, size is greater ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-fetch-lengths.html
unsigned long * mysql_fetch_lengths(MYSQL_RES *result) Description Returns the lengths of the columns of the current row within a result set. If you plan to copy field values, this length information is also useful for optimization, because you can ...
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-real-escape-string-quote.html
unsigned long mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, unsigned long length, char quote) Description This function creates a legal SQL string for use in an SQL statement. The mysql argument must be a valid, open ...
Displaying 951 to 960 of 990 total results