Search



Search Results
Displaying 901 to 910 of 2406 total results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-overview.html
Interacting with a MySQL server from an applications using the Connector/ODBC typically involves the following operations: Configure the Connector/ODBC DSN. This might include: allocate environment handle, set ODBC version, allocate connection ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-crystalreports.html
Crystal Reports can use an ODBC DSN to connect to a database from which you to extract data and information for reporting purposes. Note There is a known issue with certain versions of Crystal Reports where the application is unable to open and ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cursor.html
buffered can also be passed to connect() to set the default buffering mode for all cursors created from the connection object. raw can also be passed to connect() to set the default raw mode for all cursors created from the connection object.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorbuffered.html
In this case, you must be sure to fetch all rows of the result set before executing any other statements on the same connection, or an InternalError (Unread result found) exception will be raised. To create a buffered cursor, use the buffered ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-pooledmysqlconnection-close.html
Syntax: cnx.close() Returns a pooled connection to its connection pool. For a pooled connection, close() does not actually close it but returns it to the pool and makes it available for subsequent connection requests. If the pool configuration ...
https://dev.mysql.com/doc/connector-python/en/connector-python-cext-development.html
For Connector/Python installations that include both implementations, it can optionally be toggled it by passing use_pure=False (to use C implementation) or use_pure=True (to use the Python implementation) as an argument to mysql.connector.connect(). For Connector/Python installations that do not include the C Extension, passing use_pure=False to mysql.connector.connect() raises an ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
cnx = mysql.connector.connect(user='scott') cursor = cnx.cursor() A single MySQL server can manage multiple databases. Typically, you specify the database to switch to when connecting to the MySQL server. All DDL (Data Definition Language) ...
https://dev.mysql.com/doc/ndbapi/en/mgm-errors.html
Request Errors Node ID Allocation Errors Service Errors Backup Errors Single User Mode Errors Configuration Errors General Usage Errors Request Errors These are errors generated by failures to connect to a management server. Value Description ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-scanning-basic.html
This example makes use of the following classes and methods: Ndb_cluster_connection: connect() wait_until_ready() Ndb: init() getDictionary() startTransaction() closeTransaction() NdbTransaction: getNdbScanOperation() execute() NdbOperation: ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-27.html
Pluggable Authentication Bugs Fixed Pluggable Authentication Applications that use the legacy JDBC API now can establish connections without passwords for accounts that use the authentication_oci server-side authentication plugin, provided that the ...To ensure correct account mapping, the client-side Oracle Cloud Infrastructure configuration must contain a fingerprint of the API key to use for authentication (fingerprint entry) and the location of a PEM file with the private part of the API key (key_file ...
Displaying 901 to 910 of 2406 total results