Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-5-2.html
From the "Create New Data Source" dialog, select the MySQL ODBC 5.x ANSI or Unicode Driver, then click Finish to open its connection parameters dialog. Figure 5.2 Create New Data Source Dialog: Choosing a MySQL ODBC Driver You now need to configure ... The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions such as tracing (used for debugging) and connection ...
https://dev.mysql.com/doc/connector-odbc/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/connector-odbc/en/connector-odbc-installation-binary-unix-rpm.html
To uninstall the driver, become root and execute an rpm command: $> su root $> rpm -e mysql-connector-odbc . To install or upgrade Connector/ODBC from an RPM distribution on Linux, simply download the RPM distribution of the latest version of ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation.html
Where to Get Connector/ODBC You can get a copy of the latest version of Connector/ODBC binaries and sources from our website at https://dev.mysql.com/downloads//connector/odbc/. Supported Platforms Connector/ODBC can be used on all major platforms ... This section explains where to download Connector/ODBC, and how to run the installer, copy the files manually, or build from ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-support-bug-report.html
Determine what statements were issued by searching for the string >mysql_real_query in the myodbc.log file. Also, try issuing the statements from the mysql client program or from admndemo. This helps you determine whether the error is in ... If you ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-access.html
To improve the integration between Microsoft Access and MySQL through Connector/ODBC: For all versions of Access, enable the Connector/ODBC Return matching rows option. For maximum portability, do not use a length specification in the column ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors.html
The mysql.connector.errors module defines exception classes for errors and warnings raised by MySQL Connector/Python. Most classes defined in this module are available when you import mysql.connector. For some MySQL client or server errors it is ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-constructor.html
If omitted, the cursor is created but its execute() method raises an exception.
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. Connector/Python converts hire_start and hire_end from Python types to a data type that MySQL understands and adds the required quotes. After ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html
When you use a transactional storage engine such as InnoDB (the default in MySQL 5.5 and higher), you must commit the data after a sequence of INSERT, DELETE, and UPDATE statements. We then create a new cursor, by default a MySQLCursor object, using ... Inserting or updating data is also done using the handler structure known as a ...