Search



Search Results
Displaying 51 to 60 of 382 total results
https://dev.mysql.com/doc/ndbapi/en/ndb-column.html
Column::getCharset() Description This gets the character set used by a text column. This method is applicable only to columns whose Type value is Char, Varchar, or Text. Return value A pointer to a CHARSET_INFO structure specifying both character ...
https://dev.mysql.com/doc/ndbapi/en/ndb-event.html
Signature void addEventColumns ( int n, const char** columnNames ) Parameters This method requires the two arguments listed here: The number of columns n (an integer). The names of the columns columnNames—this must be passed as a pointer to a ...
https://dev.mysql.com/doc/ndbapi/en/ndb-index.html
Signature Index ( const char* name = "" ) Parameters The name of the new index. Signature void addColumnName ( const char* name ) Parameters The name of the column to be added to the index, as a constant character pointer. Signature void ...Index ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-16.html
Connector/C++ now supports all Unicode character sets for older servers, including utf8mb4, utf16, utf16le, utf32, and ucs2. (Bug #28966038, WL #12196) Compilation Notes Thanks to Daniël van Eeden, who contributed a code change to use the stdbool.h ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
This section describes how to use the C API asynchronous interface. In this discussion, asynchronous and nonblocking are used as synonyms, as are synchronous and blocking. The asynchronous C API functions cover operations that might otherwise block ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-data-structures.html
For integer variables (which can be char for single-byte values or an integer type for larger values), you should also indicate whether the variable has the unsigned attribute by setting the is_unsigned member, described later. For character ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-bind-param.html
bool mysql_bind_param(MYSQL *mysql, unsigned n_params, MYSQL_BIND *bind, const char **name) Description mysql_bind_param(), available as of MySQL 8.0.23, enables defining attributes that apply to the next query sent to the server. name: The address ...For discussion of the purpose and use of query attributes, see Query ...
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/connectors/en/connector-j-reference-type-conversions.html
MySQL Connector/J is flexible in the way it handles conversions between MySQL data types and Java data types. In general, any MySQL data type can be converted to a java.lang.String, and any numeric type can be converted to any of the Java numeric ...
https://dev.mysql.com/doc/internals/en/bas-ext.html
Synopsis virtual const char ** bas_ext ( ); ; Description This is the bas_ext method. Purpose Defines the file extensions used by the storage engine. It is called to provide the MySQL server with a list of file extensions used by the storage engine. By providing a list of extensions, storage engines can in many cases omit the [custom-engine.html#custom-engine-api-reference-delete_table delete_table()] method as the MySQL server will close all references to the table and delete all files with the specified ...
Displaying 51 to 60 of 382 total results