Search



Search Results
Displaying 1261 to 1270 of 2264 total results
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-create-configure.html
Once this is done, we modify the target cluster's configuration until it matches that of the wild cluster that we want to import. At a later point in the example, we also show how to test the configuration in a dry run before attempting to perform ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-start-stop-agent-linux.html
To start the MySQL Cluster Manager agent on a given host running a Linux or similar operating system, you should run mcmd, found in the bin directory within the manager installation directory on that host. Typical options used with mcmd are shown ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-data-structures.html
For string columns, the length value varies on the connection character set. This section describes C API data structures other than those used for prepared statements, the asynchronous interface, or the replication stream interface. For ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-ssl-session-reused.html
bool mysql_get_ssl_session_reused(MYSQL *mysql) Description Indicates whether the currently connected session is reusing a prior session. Return Values TRUE if a session was reused when establishing the TLS connection. FALSE if the session is not ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-next-result.html
After calling mysql_next_result() the state of the connection is as if you had called mysql_real_query() or mysql_query() for the next statement. CLIENT_MULTI_RESULTS can be enabled when you call mysql_real_connect(), either explicitly by passing ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-escape-string-quote.html
The mysql argument must be a valid, open connection because character escaping depends on the character set in use by the server. The string in the from argument is encoded to produce an escaped SQL string, taking into account the current character ... unsigned long mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, unsigned long length, char quote) Description This function creates a legal SQL string for use in an SQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-escape-string.html
The mysql argument must be a valid, open connection because character escaping depends on the character set in use by the server. The string in the from argument is encoded to produce an escaped SQL string, taking into account the current character ... unsigned long mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length) Description This function creates a legal SQL string for use in an SQL ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-select-db.html
int mysql_select_db(MYSQL *mysql, const char *db) Description Causes the database specified by db to become the default (current) database on the connection specified by mysql. mysql_select_db() fails unless the connected user can be authenticated ...In subsequent queries, this database is the default for table references that include no explicit database ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-session-track-get-first.html
By default, notification is enabled for these session system variables: autocommit character_set_client character_set_connection character_set_results time_zone To change the default notification for this tracker type, set the session_track_schema ... int mysql_session_track_get_first(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length) Description MySQL implements a session tracker mechanism whereby the server returns information about session state changes to ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-set-character-set.html
int mysql_set_character_set(MYSQL *mysql, const char *csname) Description This function is used to set the default character set for the current connection. The connection collation becomes the default collation of the character set. Example MYSQL ...This function works like the SET NAMES statement, but also sets the value of mysql->charset, and thus affects the character set used by mysql_real_escape_string() Return Values Zero for ...
Displaying 1261 to 1270 of 2264 total results