Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-async-methods.html
Requirements Async-Await support requires .NET Framework 4.5 or later TAP support requires .NET Framework 4.0 or later MySQL Connector/NET 6.9 or later Methods The following methods can be used with either TAP or Async-Await. private async void ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-writing.html
After assigning the byte array as a parameter of the MySqlCommand object, the ExecuteNonQuery method is called and the BLOB is inserted into the file table. To write a file to a database, we need to convert the file to a byte array, then use the ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-bulk-loader.html
MySQL Connector/NET features a bulk loader class that wraps the MySQL statement LOAD DATA INFILE. The following code shows a simple example of using the MySqlBulkLoader class. Further information on MySqlBulkLoader can be found in the reference ...
https://dev.mysql.com/doc/connectors/en/connector-net-support-bug-report.html
If you encounter difficulties or problems with MySQL Connector/NET, contact the Connector/NET community, as explained in Section 4.9.1, “Connector/NET Community Support”. First try to execute the same SQL statements and commands from the mysql ...If reporting a problem, ideally include the following information with the email: Operating system and ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-data-adapter.html
Previously, when using MySqlDataReader, the connection to the database was continually maintained unless explicitly closed. This decoupled mode of working with data is supported by MySQL Connector/NET. The Data Adapter is created by instantiating ...It is also possible to work in a manner where a connection is only established when ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-windows-5-2.html
From the "Create New Data Source" dialog, select the MySQL ODBC 5.x ANSI or Unicode Driver, then click Finish to open its connection parameters dialog. Figure 5.3 Create New Data Source Dialog: Choosing a MySQL ODBC Driver You now need to configure ... The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-macos.html
macOS is based on the FreeBSD operating system, and you can normally use the MySQL network port for connecting to MySQL servers on other hosts. Installing the Connector/ODBC driver lets you connect to MySQL databases on any platform through the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation.html
For example, the MySQL Server client library depends on C++ runtime libraries. Where to Get Connector/ODBC You can get a copy of the latest version of Connector/ODBC binaries and sources from our website at ... This section explains where to ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-support-bug-report.html
Determine what statements were issued by searching for the string >mysql_real_query in the myodbc.log file. Also, try issuing the statements from the mysql client program or from admndemo. This helps you determine whether the error is in ... If you ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors.html
The mysql.connector.errors module defines exception classes for errors and warnings raised by MySQL Connector/Python. Most classes defined in this module are available when you import mysql.connector. For some MySQL client or server errors it is ...