Search Results
https://dev.mysql.com/doc/refman/8.4/en/multifactor-authentication.html
For applications that use the C API, the MYSQL_OPT_USER_PASSWORD option for the mysql_options4() C API function enables the same capability. The following example drops the third factor (authentication_webauthn) that was added in the previous ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-shell.html
For example to connect to the instance ds1.example.com on the default X Protocol port of 33060 use the network string user@ds1.example.com:33060. Tip If you connect to the instance using classic MySQL protocol, for example by using the default port ... This quick-start guide assumes a certain level of familiarity with MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-shell.html
For example to connect to the instance ds1.example.com on the default X Protocol port of 33060 use the network string user@ds1.example.com:33060. Tip If you connect to the instance using classic MySQL protocol, for example by using the default port ... This quick-start guide assumes a certain level of familiarity with MySQL ...
https://dev.mysql.com/doc/refman/8.4/en/pattern-matching.html
When you test for a match for this type of pattern, use the REGEXP_LIKE() function (or the REGEXP or RLIKE operators, which are synonyms for REGEXP_LIKE()). MySQL provides standard SQL pattern matching as well as a form of pattern matching based on ...
https://dev.mysql.com/doc/refman/8.4/en/update.html
The implicit default value is 0 for numeric types, the empty string ('') for string types, and the “zero” value for date and time types. The mysql_info() C API function returns the number of rows that were matched and updated and the number of ... UPDATE is a DML statement that modifies rows in a ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/backup-progress-report-options.html
There are two options for controlling the progress reporting function of mysqlbackup: --show-progress and --progress-interval: --show-progress[={stderr|stdout|file:FILENAME|fifo:FIFONAME|table|variable}] Command-Line Format ...The argument of the ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface-usage.html
To prepare the statement on the server, call mysql_stmt_prepare() and pass it a string containing the SQL statement. Prepared Statement Logging For prepared statements that are executed with the mysql_stmt_prepare() and mysql_stmt_execute() C API ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-client-info.html
const char * mysql_get_client_info(void) Description Returns a string that represents the MySQL client library version (for example, "8.4.6"). The function value is the version of MySQL that provides the client library. Return Values A character ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-get-ssl-session-data.html
This function returns a session data string and provides the length of the string in out_len (if non-NULL). void * mysql_get_ssl_session_data(MYSQL *, unsigned int n_ticket, unsigned int *out_len) Description mysql_get_ssl_session_data() permits ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-extension-createresult-return.html
The error dictionary must have the following attributes: error: (string) description of the error. The data can be either a dictionary, for a single result, or a list of dictionaries, for multiple results. Single Result Multiple Result Single Result ...