Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-faq.html
When a client begins a transaction in classic MySQL, all subsequent commands (on that connection) are part of that transaction until the client commits or rolls back the transaction. Questions 10.1: Are all commands executed after a transaction ...
MySQL Connector/NET Developer Guide :: 3.1.1 Installing Connector/NET Using the Standalone Installer
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-binary-windows-installer.html
You can install MySQL Connector/NET through a Windows Installer (.msi) installation package, which can install Connector/NET on supported Windows operating systems. The MSI package is a file named mysql-connector-net-version.msi, where version ...
https://dev.mysql.com/doc/connector-net/en/connector-net-installation.html
MySQL Connector/NET runs on any platform that supports the .NET Standard (.NET Framework, .NET Core, and Mono). The source code is available for download from MySQL Download MySQL Connector/NET or at GitHub from the MySQL Connector/NET repository.
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-intro.html
This section provides a gentle introduction to programming with MySQL Connector/NET. It also assumes that you have installed the world database sample, which can be downloaded from the MySQL Documentation page. The code example is written in C#, ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-parameters.html
This part of the tutorial shows you how to use parameters in your MySQL Connector/NET application. The user could enter a string that generates a runtime error, or in the worst case actually harms the system. As well as marking the position of the ...Although it is possible to build SQL query strings directly from user input, this is not advisable as it does not prevent erroneous or malicious information being ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pem.html
The direct use of PEM format certificates was introduced to simplify certificate management in multiplatform environments that include similar MySQL products. For this example, use the test client certificates from the MySQL server repository ...In ...
https://dev.mysql.com/doc/connector-net/en/preface.html
MySQL Connector/NET 9.5 Community License Information User Manual has information about licenses relating to Connector/NET community releases in the 9.5 release series. MySQL Connector/NET 9.5 Commercial License Information User Manual has ...
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.5: ConnectionString = "DRIVER={MySQL ODBC 9.5 ...If ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-csharp.html
The following sample creates a table my_odbc_net and demonstrates its use in C#. { for (int i=0; i < MyOdbcException.Errors.Count; i++) { Console.Write("ERROR #" + i + "\n" + "Message: " + MyOdbcException.Errors[i].Message + "\n" + "Native: " + ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-binary-unix-tarball.html
To install the driver from a tarball distribution (.tar.gz file), download the latest version of the driver for your operating system and follow these steps, substituting the appropriate file and directory names based on the package you download ...