Search



Search Results
Displaying 1341 to 1350 of 1965 total results
https://dev.mysql.com/doc/connector-odbc/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/connector-odbc/en/connector-odbc-introduction.html
A FAQ (Frequently Asked Questions) list: Section 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/connector-odbc/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/connector-odbc/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/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-visualinterdev.html
If you have a BIGINT in your result, you may get the error [Microsoft][ODBC Driver Manager] Driver does not support this parameter. Try selecting the Change BIGINT columns to INT option in the Connector/ODBC connect screen.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-fetch-fields.html
Returns a list of tuples, one tuple per column Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: field_info = ccnx.fetch_fields() Fetches column information for the active result set.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-fetch-row.html
ccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()') row = ccnx.fetch_row() print(row) ccnx.free_result() Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: row = ccnx.fetch_row() Fetches the next row from ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-next-result.html
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: ccnx.next_result() Initiates the next result set for a statement string that produced multiple result sets.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-query.html
It raises a TypeError exception if any argument has an invalid type, and a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. ccnx.query('DROP TABLE IF EXISTS t') ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-rollback.html
Syntax: ccnx.rollback() Rolls back the current transaction. Raises a MySQLInterfaceError exception on errors. ...
Displaying 1341 to 1350 of 1965 total results