Search



Search Results
Displaying 1681 to 1690 of 1703 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-data-structures.html
MYSQL_FIELD_OFFSET This is a type-safe representation of an offset into a MySQL field list. This section describes C API data structures other than those used for prepared statements, the asynchronous interface, or the replication stream interface.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-features.html
The following sections discuss techniques for working with several features of the C API into your applications.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-introduction.html
The default maximum built into the client library is 1GB, but the default maximum in the server is 1MB. The C API provides low-level access to the MySQL client/server protocol and enables C programs to access database contents. The C API code is ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-threaded-clients.html
If a thread does not create the connection to the MySQL database but calls MySQL functions, take the following into account: When you call mysql_init(), MySQL creates a thread-specific variable for the thread that is used by the debug library (among ... This section provides guidance for writing client programs that use the thread-related functions in the MySQL C ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-store-result-nonblocking.html
mysql_store_result_nonblocking() returns an enum net_async_status status indicator and takes a second result argument that is the address of a pointer to a MYSQL_RESULT into which to store the result set. enum net_async_status ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-use-result.html
mysql_use_result() initiates a result set retrieval but does not actually read the result set into the client like mysql_store_result() does. MYSQL_RES * mysql_use_result(MYSQL *mysql) Description After invoking mysql_real_query() or mysql_query(), ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-api.html
A plugin can parse text into words using rules that differ from those used by the built-in parser. MySQL supports a plugin API that enables creation of server components. Plugins can be loaded at server startup, or loaded and unloaded at runtime ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/plugin-data-structures.html
When a client program looks for a client plugin that is in a plugin library and not built into libmysqlclient, it looks for a file with a base name that is the same as the plugin name. A plugin library file includes descriptor information to ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/porting.html
If you run into problems with a new port, you may have to do some debugging of MySQL! See Debugging a MySQL Server. Before attempting to port MySQL to other operating systems, check the list of currently supported operating systems first. Note If ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-plugins.html
Each plugin must have a descriptor, but there is no division into separate general and type-specific descriptors. To create a plugin library, you must provide the required descriptor information that indicates what plugins the library file ...
Displaying 1681 to 1690 of 1703 total results