Search Results
https://dev.mysql.com/doc/c-api/8.4/en/index.html
Abstract This is the MySQL 8.4 C API Developer Guide. 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 distributed with MySQL and implemented in the ...
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-stmt-bind-named-param.html
bool mysql_stmt_bind_named_param(MYSQL_STMT *stmt, MYSQL_BIND *binds, unsigned n_params, const char **names) Description mysql_stmt_bind_named_param() sets up unnamed and named (query attributes) bind parameters for prepared statements. This ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-store-result.html
It is unnecessary to call mysql_stmt_store_result() after executing an SQL statement that does not produce a result set, but if you do, it does not harm or cause any notable performance problem. int mysql_stmt_store_result(MYSQL_STMT *stmt) ...
https://dev.mysql.com/doc/c-api/8.4/en/preface.html
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 distributed with MySQL and implemented in the libmysqlclient library. License Restrictions This software ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-functions.html
There are three ways to add a new function to MySQL: Create a stored function (a type of stored object). A stored function is written using SQL statements rather than by compiling object code. A native function is added by modifying the MySQL ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/client-plugin-descriptors.html
Each client plugin must have a descriptor that provides information to the client plugin API. The descriptor structure begins with a fixed set of members common to all client plugins, followed by any members specific to the plugin type. This must ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/crd-ndbclusterspec.html
dataNode: # Specified in paramName: paramValue format DataMemory: 100M MaxNoOfTables: 1024 MaxNoOfConcurrentOperations: 409600 Arbitration: WaitExternal NDB Cluster Data Node Configuration Parameters, provides a quick reference to NDB Cluster data ...NdbClusterSpec contains the fields named and described in the following list: redundancyLevel (integer): The number of data replicas or copies of data stored by NDB ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/crd-ndbmysqldspec.html
NdbMysqldSpec is the specification for any MySQL Servers to be run as NDB Cluster SQL nodes. nodeCount (integer): The number of SQL nodes (that is, MySQL servers or instances of mysqld) running in the NDB Cluster. maxNodeCount (integer): (optional) ...
https://dev.mysql.com/doc/relnotes/mysql-cluster-manager/8.4/en/index.html
Abstract This document contains information about changes in MySQL Cluster Manager version 8.4. Updates to these notes occur as new product features are added, so that everybody can follow the development process. If a recent version is listed here ...