Search Results
https://dev.mysql.com/doc/refman/9.7/en/keyring-key-migration.html
--keyring-migration-user, --keyring-migration-password: The account credentials to use to connect to the running server. The user who invokes a server in key-migration mode must not be the root operating system user, unless the --user option is ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-authentication-user-plugin.html
Advanced users with special security requirements can create their own authentication plugins for MySQL Connector/NET applications. MySqlConnection con = new MySqlConnection("server=localhost; database=test; user id=myuser; password=mypass"); ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-authentication-user-plugin.html
Advanced users with special security requirements can create their own authentication plugins for MySQL Connector/NET applications. MySqlConnection con = new MySqlConnection("server=localhost; database=test; user id=myuser; password=mypass"); ...
https://dev.mysql.com/doc/refman/9.7/en/performance-schema-connection-tables.html
When a client connects to the MySQL server, it does so under a particular user name and from a particular host. The accounts table has USER and HOST columns to track connections per user and host combination. The users and hosts tables have a USER ...They differ in that, for grant tables, the host part of an account can be a pattern, whereas for Performance Schema tables, the host value is always a specific nonpattern host ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-recommender.html
Recommender Constructor Recommender.train() Recommender.fit() Recommender.predictRatings() Recommender.predictItems() Recommender.predictUsers() Recommender.predictSimilarItems() Recommender.predictSimilarUsers() Recommender.score() ...Recommender ...
https://dev.mysql.com/doc/refman/9.7/en/full-text-adding-collation.html
Warning User-defined collations are deprecated; you should expect support for them to be removed in a future version of MySQL. The server issues a warning for any use of COLLATE user_defined_collation in an SQL statement; a warning is also issued ...The sample collation is like latin1_swedish_ci but treats the '-' character as a letter rather than as a punctuation character so that it can be indexed as a word ...
https://dev.mysql.com/doc/mysql-shell/9.7/en/mysql-shell-sql-system-log.html
Mar 1 17:35:33 myhost mysqlsh[33060]: SYSTEM_USER=hanna_j MYSQL_USER=hanna CONNECTION_ID=14 DB_SERVER=localhost DB='--' QUERY='create table test.test (c int, my_row_id BIGINT AUTO_INCREMENT INVISIBLE PRIMARY KEY);' . The key-value pairs are as ...
https://dev.mysql.com/doc/relnotes/mysql/9.7/en/news-9-2-0.html
(Bug #37132323) This release adds the CREATE_SPATIAL_REFERENCE_SYSTEM privilege, which allows the user to execute any of the statements CREATE SPATIAL REFERENCE SYSTEM, CREATE OR REPLACE SPATIAL REFERENCE SYSTEM, and DROP SPATIAL REFERENCE SYSTEM.
https://dev.mysql.com/doc/x-devapi-userguide/en/database-connection-example.html
You pass in the connection parameters to connect to the MySQL server, such as the hostname and user, very much like the code in one of the classic APIs. The connection parameters can be specified as either a URI type string, for example ... The code ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-change-user.html
Syntax: ccnx.change_user(user='user_name, password='password_val', database='db_name') Changes the user and sets a new default database.