Search



Search Results
Displaying 3411 to 3420 of 3518 total results
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-thread-function-descriptions.html
To create a threaded client, use the functions described in the following sections.
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-stmt-init.html
MYSQL_STMT * mysql_stmt_init(MYSQL *mysql) Description Creates and returns a MYSQL_STMT handler. The handler should be freed with mysql_stmt_close(), at which point the handler becomes invalid and should no longer be used. See also Section 6.2, ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-thread-init.html
bool mysql_thread_init(void) Description This function must be called early within each created thread to initialize thread-specific variables. Calling mysql_thread_init() is automatically handled by mysql_init(), mysql_library_init(), ...
https://dev.mysql.com/doc/c-api/8.4/en/query-results.html
In addition to the result set returned by a query, you can also get the following information: mysql_affected_rows() returns the number of rows affected by the last query when doing an INSERT, UPDATE, or DELETE. With mysql_store_result(), ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/compiling-plugin-libraries.html
After your plugin is written, you must compile it and install it. The procedure for compiling shared objects varies from system to system. If you build your library using CMake, it should be able to generate the correct compilation commands for ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api-components.html
The WITH PARSER clause for full-text index creation associates a full-text parser plugin with a given FULLTEXT index. For new MySQL installations, this table is created during the installation process. SQL statements: INSTALL PLUGIN registers a ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api.html
MySQL supports a plugin API that enables creation of server components. This table is created as part of the MySQL installation process. Plugins can be loaded at server startup, or loaded and unloaded at runtime without restarting the server. The ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-data-structures.html
To create multiple client plugins, separate plugin libraries must be used. A plugin library file includes descriptor information to indicate what plugins it contains. If the plugin library contains any server plugins, it must include the following ...
Displaying 3411 to 3420 of 3518 total results