Search Results
https://dev.mysql.com/doc/connectors/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/connectors/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/connectors/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/connectors/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.3: ConnectionString = "DRIVER={MySQL ODBC 9.3 ...If ...
https://dev.mysql.com/doc/connectors/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 ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-coldfusion.html
The following information is taken from the ColdFusion documentation: Use the following information to configure ColdFusion Server for Linux to use the unixODBC driver with Connector/ODBC for MySQL data sources. ColdFusion version 4.5.1 lets you ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-clientflag.html
This class provides constants defining MySQL client flags that can be used when the connection is established to configure the session. >>> import mysql.connector >>> mysql.connector.ClientFlag.FOUND_ROWS 2 See Section 6.9.2.32, ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursorraw.html
A MySQLCursorRaw cursor skips the conversion from MySQL data types to Python types when fetching rows. Example: import mysql.connector cnx = mysql.connector.connect() # Only this particular cursor will be raw cursor = cnx.cursor(raw=True) # All ...A ...
https://dev.mysql.com/doc/connectors/en/idm46074305203024.html
Installation via pip is supported on Windows, macOS, and Linux platforms. Note For macOS platforms, DMG installer packages were available for Connector/Python 8.0 and earlier.
https://dev.mysql.com/doc/connectors/en/index.html
Abstract This manual describes the Connectors and APIs that can be used with MySQL. For help with using MySQL, please visit the MySQL Forums, where you can discuss your issues with other MySQL users.