Search



Search Results
Displaying 11 to 20 of 382 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-options.html
MYSQL_DEFAULT_AUTH (argument type: char *) The name of the authentication plugin to use. MYSQL_INIT_COMMAND (argument type: char *) SQL statement to execute when connecting to the MySQL server. MYSQL_OPT_BIND (argument: char *) The network interface ... int mysql_options(MYSQL *mysql, enum mysql_option option, const void *arg) Description Can be used to set extra connect options and affect behavior for a ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-adapter.html
This program inserts CHAR, VARCHAR, and BINARY column data into a table by constructing aRef objects using array adapters of the type defined in common/array_adapter.hpp (see Section 2.5.15, “Common Files for NDB API Array Examples”). static ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/adding-loadable-function.html
If you want to use a loadable function that needs to access symbols from mysqld (for example, the metaphone function in sql/udf_example.cc uses default_charset_info), you must link the program with -rdynamic (see man dlopen). SQL Type C++ Type ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-ndbrecord.html
*/ #define CHUNK_SIZE 100 int chunk; char buffer[CHUNK_SIZE]; for (chunk= (length-1)/CHUNK_SIZE; chunk >=0; chunk--) { Uint64 pos= chunk*CHUNK_SIZE; Uint32 chunk_length= CHUNK_SIZE; if (pos + chunk_length > length) chunk_length= length - pos; /* ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbtransaction.html
This method can also be called using a single NdbRecord pointer and single char pointer (combined_rec, combined_row) where the single NdbRecord represents record and attribute and data. Signature NdbIndexScanOperation* scanIndex ( const NdbRecord* ...A transaction consists of a list of operations represented by the NdbOperation class, or by one of its subclasses—NdbScanOperation, NdbIndexOperation, or ...
https://dev.mysql.com/doc/refman/8.4/en/cast-functions.html
A common use for BINARY is to force a character string comparison to be done byte by byte using numeric byte values rather than character by character. For information about the differences between the binary collation of the binary character set ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-authentication-plugins-server-side.html
The structure definition, found in plugin_auth.h, looks like this: typedef struct st_mysql_server_auth_info { char *user_name; unsigned int user_name_length; const char *auth_string; unsigned long auth_string_length; char ... Declare the server-side ...
https://dev.mysql.com/doc/ndbapi/en/ndb-dictionary.html
Signature int dropEvent ( const char* name, int force = 0 ) Parameters This method takes two parameters: The name of the event to be dropped, as a string. Signature const Event* getEvent ( const char* eventName ) Parameters The eventName, a string ...This means that they cannot be accessed by MySQL clients, and that they cannot be ...
https://dev.mysql.com/doc/refman/8.4/en/faqs-cjk.html
What problems should I be aware of when working with the Big5 Chinese character set? A.11.4. Of what issues should I be aware when working with Korean character sets in MySQL? A.11.8. Why does my GUI front end or browser display CJK characters ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-event-handling.html
The source code for this program may be found in the NDB Cluster source tree, in the file storage/ndb/ndbapi-examples/ndbapi_event/ndbapi_event.cpp. #include <NdbApi.hpp> // Used for cout #include <stdio.h> #include <iostream> #include <unistd.h> ...
Displaying 11 to 20 of 382 total results