Search Results
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-19.html
Examples: sql::ConnectOptionsMap opts; opts["hostName"]="host1,host2:13001,localhost:13000"; opts["schema"]="test"; opts["OPT_MULTI_HOST"] = true; opts["userName"]="user"; opts["password"]="password"; driver->connect(opts); sql::ConnectOptionsMap ...
https://dev.mysql.com/doc/x-devapi-userguide/en/transaction-handling.html
Transactions can be used to group operations into an atomic unit. Either all operations of a transaction succeed when they are committed, or none. It is possible to roll back a transaction as long as it has not been committed. Transactions can be ...
https://dev.mysql.com/doc/refman/8.4/en/command-line-options.html
An exception to this rule is the option for specifying your MySQL password. This option can be given in long form as --password=pass_val or as --password. In the latter case (with no password value given), the program interactively prompts you for ... Program options specified on the command line follow these rules: Options are given after the command ...
https://dev.mysql.com/doc/refman/8.4/en/pluggable-authentication.html
Otherwise, the server invokes that plugin to authenticate the user, and the plugin returns a status to the server indicating whether the user provided the correct password and is permitted to connect. The mysql_native_password plugin implements ...
https://dev.mysql.com/doc/refman/8.4/en/query-log.html
(This assumes that the general query log itself is enabled.) Passwords in statements written to the general query log are rewritten by the server not to occur literally in plain text. Password rewriting can be suppressed for the general query log by ... The general query log is a general record of what mysqld is ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-connecting.html
The following example shows how to connect to the MySQL server: import mysql.connector cnx = mysql.connector.connect(user='scott', password='password', host='127.0.0.1', database='employees') cnx.close() Section 6.7.1, “Connector/Python Connection ... The connect() constructor creates a connection to the MySQL server and returns a MySQLConnection ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-connecting.html
The following example shows how to connect to the MySQL server: import mysql.connector cnx = mysql.connector.connect(user='scott', password='password', host='127.0.0.1', database='employees') cnx.close() Section 7.1, “Connector/Python Connection ... The connect() constructor creates a connection to the MySQL server and returns a MySQLConnection ...
https://dev.mysql.com/doc/mysql-installer/en/MySQLInstallerConsole.html
--mos-password=password Sets the My Oracle Support (MOS) user's password for commercial versions of the MySQL Installer. Manual to set the proxy details manually (--proxy-server, --proxy-port, --proxy-username, --proxy-password).
https://dev.mysql.com/doc/x-devapi-userguide/en/using-sql.html
In addition to the simplified X DevAPI syntax of the Session object, the Session object has a sql() function that takes any SQL statement as a string. The following example uses a Session to call an SQL Stored Procedure on the specific node.
https://dev.mysql.com/doc/refman/8.4/en/mysqld-multi.html
--password=password Command-Line Format --password=string Type String Default Value [none] The password of the MySQL account to use when invoking mysqladmin. Note that the password value is not optional for this option, unlike for other MySQL ...