Search Results
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-extension-createresult-data-specification.html
The data definition of a result is composed of the following elements: Column metadata: the column names and their types. Automatically Defined Column Data The first dictionary defined in data is used to automatically determine the column metadata.
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-reporting-builtin-thread.html
The thread report has a custom output format that includes vertical listings and tables presented in different sections, and you cannot change this output format. Any truncated statements displayed in the report are truncated according to the ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-reporting-builtin-threads.html
The threads report is of the list type, and by default the results are returned as a table, but you can use the --vertical (or -E) option to display them in vertical format. Any truncated statements displayed in the report are truncated according to ... The built-in MySQL Shell report threads lists the current threads in the connected MySQL server which belong to the user account that is used to run the ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-utilities-json-mysqlsh.html
options The --collection, --table, and --tableColumn options specify a target collection or a target table and column. With the mysqlsh command interface, you invoke the JSON import utility as follows: mysqlsh user@host:port/mydb -- util importJson ...
https://dev.mysql.com/doc/c-api/9.7/en/c-api-asynchronous-data-structures.html
The value may be one of the CONNECT_STAGE_ symbols shown in the following table. This section describes data structures specific to asynchronous C API functions. For information about general-purpose C API data structures, see Section 5.2, “C API ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-options4.html
For details, see Performance Schema Connection Attribute Tables, which also describes how the Performance Schema exposes connection attributes through the session_connect_attrs and session_account_connect_attrs tables. int mysql_options4(MYSQL ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-real-escape-string-quote.html
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 statement. The mysql argument must be a valid, open ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-reset-connection.html
int mysql_reset_connection(MYSQL *mysql) Description Resets the connection to clear the session state. mysql_reset_connection() has effects similar to mysql_change_user() or an auto-reconnect except that the connection is not closed and reopened, ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-attr-set.html
bool mysql_stmt_attr_set(MYSQL_STMT *stmt, enum enum_stmt_attr_type option, const void *arg) Description Can be used to affect behavior for a prepared statement. This function may be called multiple times to set several options. The option argument ...
https://dev.mysql.com/doc/c-api/9.7/en/mysql-stmt-fetch.html
Each numeric and temporal type has a fixed length, as listed in the following table. Example The following example demonstrates how to fetch data from a table using mysql_stmt_result_metadata(), mysql_stmt_bind_result(), and mysql_stmt_fetch(). int ...