Search Results
https://dev.mysql.com/doc/connectors/en/connectors-apis.html
Connector/J provides driver support for connecting to MySQL from Java applications using the standard Java Database Connectivity (JDBC) API. Connector/ODBC provides driver support for connecting to MySQL using the Open Database Connectivity (ODBC) ... MySQL Connectors provide connectivity to the MySQL server for client ...
https://dev.mysql.com/doc/connector-net/en/connector-net-asp-provider.html
There is no need to run any type of SQL script to set up the database schema, as the providers create and maintain the proper schema automatically. You do this by first removing the dummy connection string and then adding in the proper one, as shown ... MySQL Connector/NET includes a provider model for use with ASP.NET ...
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-binary-nuget.html
In addition, the packages provides access to multiple versions of MySQL server and encapsulates database-specific protocols. MySql.Data.EntityFramework This package provides object-relational mapper (ORM) capabilities, which enables you to work with ... MySQL Connector/NET functionality is available as packages from NuGet, an open-source package manager for the Microsoft development platform (including .NET ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-getschema.html
The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The following are the collections currently provided by Connector/NET, in addition to the common collections shown ...The schema information is returned in the form of a ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql.html
mysql Information: 1 : 1: Connection Opened: connection string = 'server=localhost;User Id=root;database=world;port=3306 ;password=******;logging=True' mysql Information: 3 : 1: Query Opened: SHOW VARIABLES mysql Information: 4 : 1: Resultset ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pem.html
In your application, add a connection string using the test database and the sslclient user account (created previously). using (MySqlConnection connection = new MySqlConnection( "database=test;user=sslclient;" + "SslMode=VerifyFull" Add the ... The ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-pooling.html
Connection pooling enables the ODBC driver to re-use existing connections to a given database from a pool of connections, instead of opening a new connection each time the database is accessed. By enabling connection pooling you can improve the ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn.html
A Data Source Name associates the configuration parameters for communicating with a specific database. Generally, a DSN consists of the following parameters: Name Host Name Database Name Login Password In addition, different ODBC drivers, including ...There are three types of DSN: A System DSN is a global DSN definition that is available to any user and application on a particular ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration.html
Before you connect to a MySQL database using the Connector/ODBC driver, you configure an ODBC Data Source Name (DSN). The DSN associates the various configuration parameters required to communicate with a database to a specific name. You use the ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-access.html
You can use a MySQL database with Microsoft Access using Connector/ODBC. The MySQL database can be used as an import source, an export source, or as a linked table for direct use within an Access application, so you can use Access as the front-end ...