Search



Search Results
Displaying 461 to 470 of 2113 total results
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-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/connector-net/en/connector-net-programming.html
MySQL Connector/NET comprises several classes that are used to connect to the database, execute queries and statements, and manage query results. The following are the major classes of Connector/NET: MySqlConnection: Represents an open connection ...The MySqlConnectionStringBuilder class aids in the creation of a connection string by exposing the connection options as ...
https://dev.mysql.com/doc/connector-net/en/connector-net-ref-mysqlclient.html
MySqlCommand Represents an SQL statement to execute against a MySQL database. MySqlCommandBuilder Automatically generates single-table commands used to reconcile changes made to a data set with the associated MySQL database. MySqlDataAdapter ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-introduction.html
The MySQL Connector/ODBC is the name for the family of MySQL ODBC drivers (previously called MyODBC drivers) that provide access to a MySQL database using the industry standard Open Database Connectivity (ODBC) API. MySQL Connector/ODBC provides ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality-catalog-schema.html
Many relational databases reference CATALOG and SCHEMA in ways that do not directly correspond to what MySQL refers to as a database. Historically with MySQL ODBC Driver, CATALOG and DATABASE were two names used for the same thing. At the same time ...Generally, catalogs are collections of schemas, so the fully qualified name would look like ...
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-em-plugin/en/myoem-compliance-replication-standard-rules.html
You may want to measure your database performance on a test system before and after making this change to be sure the overhead is acceptable before deploying the change in production. Note that the current implementation of multi-threading on the ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-selective-load.html
In the terminal window, create and use the database to store the table. mysql> CREATE DATABASE data_tables; mysql> USE DATABASE data_tables; Set up the CREATE TABLE statement and the ENGINE_ATTRIBUTE options to specify the parameters needed to ...
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-how-to-import-onnx.html
> \connect --mysql MySQL_username@DB System_private_IP?local-infile=1 Create and use the database to store the table. For example: mysql> CREATE DATABASE onnx_model; mysql> USE onnx_model; Create a table with only one column to store the string. > ... This topic describes how to import an external ONNX ...
Displaying 461 to 470 of 2113 total results