Search Results
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-update-networking.html
Update Networking 3.4.4 Update Networking For the allowed client addresses, specify public-facing client IPv4 addresses that are permitted to connect to the DB System endpoint. Depending on whether you want the DB System to be accessible via the ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-workspace-running-queries.html
To run a query using the Query Editor: Connect to a DB System. Running Queries 10 Running Queries The Workspace tab in the MySQL HeatWave Console provides a Query Editor for running MySQL and MySQL HeatWave queries. Select the Workspace tab in the ...
https://dev.mysql.com/doc/heatwave-aws/en/mysql-server-error-logging.html
For information about connecting to the DB System from a client, see Connecting from a Client. If connecting from MySQL Shell, you must switch to SQL mode by typing \sql at the MySQL Shell prompt. Server Error Logging 3.1.2.3 Server Error Logging ...
https://dev.mysql.com/doc/heatwave-aws/en/running-autopilot-index-advisor-using-heatwave-console.html
Running Autopilot Index Advisor 11.1 Running Autopilot Index Advisor To run Autopilot Index Advisor, the user must connect to the DB system and have the following MySQL privileges: The EXECUTE privilege on the sys schema. Perform the following ...
https://dev.mysql.com/doc/connector-j/en/connector-j-examples.html
Examples of using Connector/J are located throughout this document. This section provides a summary and links to these examples. Example 7.1, “Connector/J: Obtaining a connection from the DriverManager” Example 7.2, “Connector/J: Using ...
https://dev.mysql.com/doc/connector-j/en/connector-j-fips.html
The issue can be overcome by telling Connector/J not to use its custom TrustManager implementation, but use your own security providers instead. This can be done by setting the following connection properties: fipsCompliantJsse: Set to true to ...
https://dev.mysql.com/doc/connector-j/en/connector-j-other-changes.html
Here are other changes with Connector/J 8.0 and beyond: Removed ReplicationDriver. Instead of using a separate driver, you can now obtain a connection for a replication setup just by using the jdbc:mysql:replication:// scheme. See Chapter 4, ...
https://dev.mysql.com/doc/connector-j/en/connector-j-usagenotes-statements.html
To create a Statement instance, you call the createStatement() method on the Connection object you have retrieved using one of the DriverManager.getConnection() or DataSource.getConnection() methods described earlier. Statement objects allow you to ...
https://dev.mysql.com/doc/refman/8.4/en/account-locking.html
If a client attempts to connect to a locked account, the attempt fails. The server increments the Locked_connects status variable that indicates the number of attempts to connect to a locked account, returns an ER_ACCOUNT_HAS_BEEN_LOCKED error, and ... MySQL supports locking and unlocking user accounts using the ACCOUNT LOCK and ACCOUNT UNLOCK clauses for the CREATE USER and ALTER USER statements: When used with CREATE USER, these clauses specify the initial locking state for a new ...
https://dev.mysql.com/doc/refman/8.4/en/account-names.html
MySQL account names consist of a user name and a host name, which enables creation of distinct accounts for users with the same user name who connect from different hosts. The user name part of an account name is either a nonblank value that ...