Search



Search Results
Displaying 1251 to 1260 of 2113 total results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-without-dsn.html
Here are the connection strings for Connector/ODBC using DSN-less connections: For Connector/ODBC 9.5: ConnectionString = "DRIVER={MySQL ODBC 9.5 Unicode Driver};\ SERVER=localhost;\ DATABASE=test;\ USER=venu;\ PASSWORD=venu;\ FOUND_ROWS=1;" ... You ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-unix.html
On Unix, you configure DSN entries directly in the odbc.ini file. For example, if your odbc.ini file is located in /usr/local/etc, set the environment variables like this: export ODBCINI=/usr/local/etc/odbc.ini export ODBCSYSINI=/usr/local/etc .
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-dsn-windows-5-2.html
The Database pop-up should be automatically populated with the list of databases that the user has permissions to access. The ODBC Data Source Administrator on Windows lets you create DSNs, check driver installation, and configure ODBC functions ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples.html
Once you have configured a DSN to provide access to a database, how you access and use that connection is dependent on the application or programming language. As ODBC is a standardized interface, any application or language that supports ODBC can ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-support-bug-report.html
Initiate a bug report for our bugs database at http://bugs.mysql.com/, then click the Files tab in the bug report for instructions on uploading the archive to the bugs database. If you encounter difficulties or problems with Connector/ODBC, start ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-borland-delphi.html
Also, here is some potentially useful Delphi code that sets up both an ODBC entry and a BDE entry for Connector/ODBC. The BDE entry requires a BDE Alias Editor that is free at a Delphi Super Page near you.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality-query-timeout.html
For more information on how to set the query timeout on Microsoft Windows when executing queries through an ODBC connection, read the Microsoft knowledgebase document at ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-connect.html
import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.close() connect() supports the following arguments: host, user, password, database, port, ...If ccnx ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysql-connector-connect.html
A connection with the MySQL server can be established using either the mysql.connector.connect() method or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
If this argument is not given, Connector/Python automatically generates the name, composed from whichever of the host, port, user, and database connection arguments are given in kwargs, in that order. Example: dbconfig = { "database": "test", ...
Displaying 1251 to 1260 of 2113 total results