Search Results
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.
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 ...