Search Results
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-documents-modify.html
mysql-js> db.countryinfo.modify("Name = 'France'").arrayInsert("$.Airports[0]", "CDG") To delete an element from the array, you must pass to the arrayDelete() method the index of the element to be deleted. mysql-js> db.countryinfo.modify("Code = ...
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-documents-modify.html
mysql-py> db.countryinfo.modify("Name = 'France'").array_insert("$.Airports[0]", "CDG") To delete an element from the array, you must pass to the array_delete() method the index of the element to be deleted. mysql-py> db.countryinfo.modify("Code = ... You can use the modify() method to update one or more documents in a ...
https://dev.mysql.com/doc/mysql-router/9.4/en/mysql-router-deploying-basic-routing.html
Assuming all three MySQL instances are running, next start MySQL Router by passing in the configuration file: $> ./bin/mysqlrouter -config=/etc/mysqlrouter-config.conf Now MySQL Router is listening to ports 7001 and 7002 and sends requests to the ...
https://dev.mysql.com/doc/workbench/en/workbench-reporting-bugs.html
The following is a list of tips and information that is helpful for reporting a MySQL Workbench bug. The log file location can be found using Help, Locate Log Files from within MySQL Workbench. Where to report a bug Visit http://bugs.mysql.com/ and ...A useful bug report includes: The exact steps taken to repeat the bug, ideally as a video if the bug is tricky to ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-string.html
The following is a sample connection string: "server=127.0.0.1;uid=root;pwd=12345;database=test" In this example, the MySqlConnection object is configured to connect to a MySQL server at 127.0.0.1, with a user name of root and a password of 12345.
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-string.html
The following is a sample connection string: "server=127.0.0.1;uid=root;pwd=12345;database=test" In this example, the MySqlConnection object is configured to connect to a MySQL server at 127.0.0.1, with a user name of root and a password of 12345.
https://dev.mysql.com/doc/refman/8.4/en/query-attributes.html
An application passes extra processing information with each query, for use by a plugin such as an audit plugin or query rewrite plugin. MySQL supports these capabilities without the use of workarounds such as specially formatted comments included ... The most visible part of an SQL statement is the text of the ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/crd-ndbmysqldspec.html
rootPasswordSecretName (string): (optional) The name of the secret that holds the password for the MySQL root accounts. If unspecified, a secret is created by the operator with a generated name in the format ndb_resource_name-mysqld-root-password.
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-20.html
The existing Schema.CreateCollection method now is overloaded and can be used to pass a CreateCollectionOptions object with a schema definition to a MySQL server. In addition, the MySql.Data.EntityFrameworkCore.Design NuGet package is deprecated and ... Functionality Added or Changed Bugs Fixed Functionality Added or Changed Connector/NET now supports Entity Framework Core 3.1.1 on all platforms with NET Standard 2.0 ...
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-creating-a-model.html
This tutorial describes how to create a new database model and how to forward-engineer a model to a live MySQL server. Double-click a Column Name cell and the first field defaults to moviesid because (by default) MySQL Workbench appends id to the ...Note Alternatively, you can create a model from a database by using the reverse engineering ...