Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-connection.html
For your MySQL Connector/NET application to connect to a MySQL database, it must establish a connection by using a MySqlConnection object. The MySqlConnection constructor takes a connection string as one of its parameters. The connection string ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-efmodel-ddl.html
This tutorial demonstrates how to create MySQL DDL from an Entity Framework model. Minimally, you will need Microsoft Visual Studio 2017 and MySQL Connector/NET 6.10 to perform this tutorial. Select ADO.NET Entity Data Model and click Add to open ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl.html
In this tutorial you will learn how you can use MySQL Connector/NET to connect to a MySQL server configured to use SSL. Support for SSL client PFX certificates was added to the Connector/NET 6.2 release series. More recently, support for SSL client ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-without-dsn.html
You can connect to the MySQL server using SQLDriverConnect, by specifying the DRIVER name field. Here are the connection strings for Connector/ODBC using DSN-less connections: For Connector/ODBC 9.4: ConnectionString = "DRIVER={MySQL ODBC 9.4 ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-unix.html
On Unix, you configure DSN entries directly in the odbc.ini file. For example, if your odbc.ini file is located in /usr/local/etc, set the environment variables like this: export ODBCINI=/usr/local/etc/odbc.ini export ODBCSYSINI=/usr/local/etc .
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-problems.html
While configuring a Connector/ODBC DSN, a Could Not Load Translator or Setup Library error occurs For more information, refer to MS KnowledgeBase Article(Q260558). Also, make sure you have the latest valid ctl3d32.dll in your system directory. The ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-walkthrough.html
A typical situation where you would install Connector/ODBC is to access a database on a Linux or Unix host from a Windows machine. As an example of the process required to set up access between two machines, the steps below take you through the ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-source-unix.html
-DMYSQL_CONFIG_EXECUTABLE=/path/to/mysql_config: Specifies location of the utility mysql_config, which is used to fetch values of the variables MYSQL_INCLUDE_DIR, MYSQL_LIB_DIR, MYSQL_LINK_FLAGS, and MYSQL_CXXFLAGS. You need the following tools to ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-ado.html
When you are coding with the ADO API and Connector/ODBC, you need to pay attention to some default properties that aren't supported by the MySQL server. For example, using the CursorLocation Property as adUseServer returns a result of −1 for the ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-asp.html
For more information about how to access MySQL through ASP using Connector/ODBC, refer to the following articles: Using MyODBC To Access Your MySQL Database Via ASP ASP and MySQL at DWAM.NT A Frequently Asked Questions list for ASP can be found at ...