Search Results
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-macos.html
To configure a DSN on macOS, you can either use the command-line utility (myodbc-installer), edit the odbc.ini file within the Library/ODBC directory of the user, or use the ODBC Administrator GUI. Note The ODBC Administrator is included in OS X ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-trace-log.html
To generate a Connector/ODBC log, do the following: Within Windows, enable the Trace Connector/ODBC option flag in the Connector/ODBC connect/configure screen. If the trace option is not remembered when you are going back to the above screen, it ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-macos.html
macOS is based on the FreeBSD operating system, and you can normally use the MySQL network port for connecting to MySQL servers on other hosts. Installing the Connector/ODBC driver lets you connect to MySQL databases on any platform through the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-unix-tarball.html
To install the driver from a tarball distribution (.tar.gz file), download the latest version of the driver for your operating system and follow these steps, substituting the appropriate file and directory names based on the package you download ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-binary-windows.html
Before installing the Connector/ODBC drivers on Windows: Make sure your Microsoft Data Access Components (MDAC) are up to date. You can obtain the latest version from the Microsoft Data Access and Storage website. Make sure the Visual C++ ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysql-connector-connect.html
This method sets up a connection, establishing a session with the MySQL server. If no arguments are given, it uses the already configured or default values. For a complete list of possible arguments, see Section 6.7.1, “Connector/Python ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-close.html
For a connection obtained from a connection pool, close() does not actually close it but returns it to the pool and makes it available for subsequent connection requests.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-config.html
Syntax: cnx.config(**kwargs) Configures a MySQLConnection instance after it has been instantiated. For a complete list of possible arguments, see Section 6.7.1, “Connector/Python Connection Arguments”. You could use the config() method to ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-lastrowid.html
Syntax: id = cursor.lastrowid This read-only property returns the value generated for an AUTO_INCREMENT column by the previous INSERT or UPDATE statement or None when there is no such value available. For example, if you perform an INSERT into a ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-rowcount.html
Syntax: count = cursor.rowcount This read-only property returns the number of rows returned for SELECT statements, or the number of rows affected by DML statements such as INSERT or UPDATE. For nonbuffered cursors, the row count cannot be known ...