Search Results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
To specify the statement to prepare, pass the MYSQL_STMT pointer and the statement string to mysql_stmt_prepare(). When you call mysql_stmt_execute(), MySQL use the value stored in the variable in place of the corresponding parameter marker in the ... Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a pointer to a MYSQL_STMT data ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-query.html
int mysql_query(MYSQL *mysql, const char *stmt_str) Description Executes the SQL statement pointed to by the null-terminated string stmt_str. Normally, the string must consist of a single SQL statement without a terminating semicolon (;) or \g. If ...mysql_query() cannot be used for statements that contain binary data; you must use mysql_real_query() ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-fetch.html
The length of the string types depends on the length of the actual data value, as indicated by data_length. Type Length MYSQL_TYPE_TINY 1 MYSQL_TYPE_SHORT 2 MYSQL_TYPE_LONG 4 MYSQL_TYPE_LONGLONG 8 MYSQL_TYPE_FLOAT 4 MYSQL_TYPE_DOUBLE 8 ... int ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-prepare.html
int mysql_stmt_prepare(MYSQL_STMT *stmt, const char *stmt_str, unsigned long length) Description Given the statement handler returned by mysql_stmt_init(), prepares the SQL statement pointed to by the string stmt_str and returns a status value. The ...You should not add a terminating semicolon (;) or \g to the ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/crd-ndbclusterspec.html
dataNode (string): (optional) Configuration parameters to pass to the data nodes. tdeSecretName (string): (optional) The name of the secret that holds the encryption key or password required for transparent data encryption (TDE) in NDB Cluster.
https://dev.mysql.com/doc/ndb-operator/8.4/en/crd-ndbclusterstatus.html
readyMySQLServers (string): The status of the MySQL servers attached to the NDB Cluster as SQL nodes. generatedRootPasswordSecretName (string): This is the name of the secret generated by the operator, used as the MySQL server root account password.
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-innodb-cluster-setting-options.html
The following options are changeable at the cluster level only: clusterName: string value to define the cluster name disableClone: Boolean value used to disable the clone usage on the cluster. replicationAllowedHost: string value to define strict ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-session.html
Session extends Context getMapping(Object parameter, Function(Object err, Object mapping) callback); Get the mappings for a table or class. The parameter may be a table name, a mapped constructor function, or a domain object. In an application, you ... A session is the main user access path to the ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-6.html
For X DevAPI for C, the new mysqlx_set_locking(stmt, lock) function can be called to request exclusive or shared locks on returned documents or rows, or to release locks. (WL #10980) For X DevAPI, a new auth option can be specified in connection ...
https://dev.mysql.com/doc/x-devapi-userguide/en/collection-modify.html
The modify(SearchConditionStr) function is for modifying documents in a collection, similar to an UPDATE statement for an SQL database. It takes a search condition string (SearchConditionStr) as a parameter to specify the documents that are to be ...They can be chained one after another and for multiple times: Notes The _id of a document cannot be modified or removed by the methods ...