Search Results
https://dev.mysql.com/doc/connectors/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/connectors/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/connectors/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/connectors/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/connectors/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/connectors/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/connector-net/en/connector-net-programming.html
MySQL Connector/NET comprises several classes that are used to connect to the database, execute queries and statements, and manage query results. The following are the major classes of Connector/NET: MySqlConnection: Represents an open connection ...MySqlCommand: Represents an SQL statement to execute against a MySQL ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-mysqlscript.html
Further details of the MySqlScript class can be found in the reference documentation supplied with MySQL Connector/NET. The MySqlScript object will execute the specified script on the connection set using the Connection property. MySqlScript script ... This tutorial teaches you how to use the MySqlScript ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl.html
In this tutorial you will learn how you can use MySQL Connector/NET to connect to a MySQL server configured to use SSL. Support for SSL client PFX certificates was added to the Connector/NET 6.2 release series. More recently, support for SSL client ...MySQL Server uses the PEM format for certificates and private ...
https://dev.mysql.com/doc/connector-net/en/connector-net-versions.html
MySQL Connector/NET 9.x series is a continuation of Connector/NET 8.x series, but now named to synchronize with the (latest) MySQL server version it supports. This version continues the functionality of the previous Connector/NET release series, ...