Search



Search Results
Displaying 441 to 450 of 953 total results
https://dev.mysql.com/doc/connectors/en/connector-net-support.html
If you find Connector/NET lacking some feature important to you, or if you discover a bug and need to file a bug report, please use the instructions in How to Report Bugs or Problems. The developers of MySQL Connector/NET greatly value the input of ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-parameters.html
This option is very important in dealing with large tables when you do not want the driver to cache the entire result set. On Unix and macOS, use the parameter name and value as the keyword/value pair in the DSN configuration. Alternatively, you can ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-tools-with-access.html
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 interface to a MySQL database. You can use a MySQL database with ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-macos.html
macOS is based on the FreeBSD operating system, and you can normally use the MySQL network port for connecting to MySQL servers on other hosts. Installing the Connector/ODBC driver lets you connect to MySQL databases on any platform through the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
The majority of Microsoft applications have been tested with Connector/ODBC, including Microsoft Office, Microsoft Access and the various programming languages supported within ASP and Microsoft Visual Studio. 5.8.2.1.1 Microsoft Access To improve ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errorcode.html
>>> from mysql.connector import errorcode >>> errorcode.ER_BAD_TABLE_ERROR 1051 For more information about MySQL errors, see Error Messages and Common Problems. This module contains both MySQL server and client error codes defined as module ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-warning.html
This exception is used for reporting important warnings, however, Connector/Python does not use it. It is included to be compliant with the Python Database Specification v2.0 (PEP-249). Consider using either more strict Server SQL Modes or the ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors.html
Most classes defined in this module are available when you import mysql.connector. The mysql.connector.errors module defines exception classes for errors and warnings raised by MySQL Connector/Python. The exception classes defined in this module ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-client-flags.html
For example, to unset LONG_FLAG and set the FOUND_ROWS flags: >>> from mysql.connector.constants import ClientFlag >>> cnx.client_flags=[ClientFlag.FOUND_ROWS, -ClientFlag.LONG_FLAG] >>> cnx.reconnect() Note Client flags are only set or used when ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-refresh.html
Example: >>> from mysql.connector import RefreshOption >>> refresh = RefreshOption.LOG | RefreshOption.THREADS >>> cnx.cmd_refresh(refresh) . This method flushes tables or caches, or resets replication server information. The options argument should ...
Displaying 441 to 450 of 953 total results