Search



Search Results
Displaying 1311 to 1320 of 1965 total results
https://dev.mysql.com/doc/connectors/en/connector-odbc-general-information.html
It was developed according to the specifications of the SQL Access Group and defines a set of function calls, error codes, and data types that can be used to develop database-independent applications. ODBC (Open Database Connectivity) provides a ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-unix-rpm.html
To install or upgrade Connector/ODBC from an RPM distribution on Linux, simply download the RPM distribution of the latest version of Connector/ODBC and follow the instructions below. Use su root to become root, then install the RPM file. This ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-unix.html
Build Steps for Unix To build the driver libraries, execute make: $> make If any errors occur, correct them and continue with the build process. You need the following tools to build MySQL from source on Unix: A working ANSI C++ compiler. GCC 4.2.1 ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-introduction.html
A FAQ (Frequently Asked Questions) list: Section 5.8.4, “Connector/ODBC Errors and Resolutions (FAQ)”. The MySQL Connector/ODBC is the name for the family of MySQL ODBC drivers (previously called MyODBC drivers) that provide access to a MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference.html
This section provides reference material for the Connector/ODBC API, showing supported functions and methods, supported MySQL column types and the corresponding native type in Connector/ODBC, and the error codes returned by Connector/ODBC when a ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-support-bug-report.html
This helps you determine whether the error is in Connector/ODBC or MySQL. If you encounter difficulties or problems with Connector/ODBC, start by making a log file from the ODBC Manager (the log you get when requesting logs from ODBC ADMIN) and ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-debug.html
Instructs the server to write debugging information to the error log.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-cmd-query.html
Syntax: cnx.cmd_query(statement) This method sends the given statement to the MySQL server and returns a result. The returned dictionary contains information depending on what kind of query was executed. If the query is a SELECT statement, the ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnectionpool-constructor.html
It is not an error for multiple pools to have the same name. Syntax: MySQLConnectionPool(pool_name=None, pool_size=5, pool_reset_session=True, **kwargs) This constructor instantiates an object that manages a connection pool. If this argument is not ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-fetchwarnings.html
The following example shows a SELECT statement that generates a warning: >>> cnx.get_warnings = True >>> cursor.execute("SELECT 'a'+1") >>> cursor.fetchall() [(1.0,)] >>> cursor.fetchwarnings() [(u'Warning', 1292, u"Truncated incorrect DOUBLE value: ...Syntax: tuples = cursor.fetchwarnings() This method returns a list of tuples containing warnings generated by the previously executed ...
Displaying 1311 to 1320 of 1965 total results