Search



Search Results
Displaying 461 to 470 of 953 total results
https://dev.mysql.com/doc/connector-net/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/connector-odbc/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/connector-odbc/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/connector-odbc/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/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-excel.html
If you have problems importing data into Microsoft Excel, particularly numeric, date, and time values, this is probably because of a bug in Excel, where the column type of the source data is used to determine the data type when that data is ...The ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-connect.html
import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.close() connect() supports the following arguments: host, user, password, database, port, ...If ccnx ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-mysql.html
import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.close() Permitted arguments for the MySQL class are auth_plugin, buffered, charset_name, ... Syntax: ...
https://dev.mysql.com/doc/connector-python/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/connector-python/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/connector-python/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 ...
Displaying 461 to 470 of 953 total results