Search



Search Results
Displaying 701 to 710 of 1278 total results
https://dev.mysql.com/doc/connector-odbc/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/connector-odbc/en/connector-odbc-installation-source-windows.html
This is required because Connector/ODBC uses calls and structures that do not exist in older versions of the library. You only need to build Connector/ODBC from source on Windows to modify the source or installation location. If you are unsure ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-api.html
SQLForeignKeys Yes ODBC Returns a list of column names that make up foreign keys, if they exist for a specified table. For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-support-version-history.html
This section highlights substantial changes per major Connector/ODBC release series, especially useful when updating legacy code. The connector release model changed after version 8.0, and now releases one version. Information about each ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality-catalog-schema.html
The expectation on how to interpret these schema and catalog notions differs between developers, which is why both the NO_CATALOG and NO_SCHEMA options exist: to cover all these expectations and allow one to disable interpreting ODBC function ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-more-results.html
Syntax: more = ccnx.more_results() Returns True or False to indicate whether any more result sets exist.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-query.html
ccnx.query('DROP TABLE IF EXISTS t') ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT PRIMARY KEY)') ccnx.query('INSERT INTO t (i) VALUES (NULL),(NULL),(NULL)') ccnx.query('SELECT LAST_INSERT_ID()') row = ccnx.fetch_row() ...raw_as_string ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-get-attributes.html
Syntax: cursor.get_attributes() Return a list of existing query attributes, as set by Section 10.5.2, “MySQLCursor.add_attribute() Method”.
https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html
Subsequent calls to connect() that name the same connection pool return connections from the existing pool. Simple connection pooling is supported that has these characteristics: The mysql.connector.pooling module implements pooling. A pool opens a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-connecting.html
The connect() constructor creates a connection to the MySQL server and returns a MySQLConnection object. The following example shows how to connect to the MySQL server: import mysql.connector cnx = mysql.connector.connect(user='scott', ...
Displaying 701 to 710 of 1278 total results