Search Results
https://dev.mysql.com/doc/connectors/en/connector-odbc-errors.html
A simple example can be found from http://www.dwam.net/iishelp/ado/docs/adomth02_4.htm Modified Record Error Access returns Another user had modified the record that you have modified while editing records on a Linked Table. INFORMATION_SCHEMA ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-unix.html
Set the environment variable TEST_UID and perhaps also TEST_PASSWORD to the user name and password for the tests, if needed. By default, the tests use “root” as the user and do not enter a password; if you want the tests to use another user name ... You need the following tools to build MySQL from source on Unix: A working ANSI C++ ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-opentelemetry.html
Spans generated by the connector are sent to the same destination (trace exporter) where other spans generated by the user code are sent as configured by user code. Limitation OTel instrumentation in the ODBC driver only functions if the application ... For applications on Linux systems that use OpenTelemetry (OTel) instrumentation, the connector adds query and connection spans to the trace generated by application code and forwards the current OpenTelemetry context to the ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
If you still get the error Another user has changed your data after adding a TIMESTAMP column, the following trick may help you: Do not use a table data sheet view. Consider hiding the TIMESTAMP column from view so your users are not confused. The ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-config.html
You could use the config() method to change (for example) the user name, then call reconnect(). Example: cnx = mysql.connector.connect(user='joe', database='test') # Connected as 'joe' cnx.config(user='jane') cnx.reconnect() # Now connected as ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-string.html
The following is a sample connection string: "server=127.0.0.1;uid=root;pwd=12345;database=test" In this example, the MySqlConnection object is configured to connect to a MySQL server at 127.0.0.1, with a user name of root and a password of 12345.
MySQL Connector/NET Developer Guide :: 3.1.1 Installing Connector/NET Using the Standalone Installer
https://dev.mysql.com/doc/connector-net/en/connector-net-installation-binary-windows-installer.html
You may also use the /quiet or /q command-line option with the msiexec tool to install the Connector/NET package automatically (using the default options) with no notification to the user. C:\> msiexec /package connector-net.msi /quiet To provide a ... You can install MySQL Connector/NET through a Windows Installer (.msi) installation package, which can install Connector/NET on supported Windows operating ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-stored-proc.html
In such a setup, applications and users would not get any access to the database tables directly, but can only execute specific stored procedures. A stored procedure is a set of SQL statements that is stored in the server. Clients make a single ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-entity-framework-databinding-linq-entities.html
The user's choice will in turn be used to populate the GridView control. The conditional code ensures that if the page is subsequently reloaded, the list control is not repopulated, which would cause the user selection to be lost. This method is ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-mysqlscript.html
These user-provided routines are called back when the connected event occurs. This tutorial teaches you how to use the MySqlScript class. Depending on the circumstances, this can be more convenient than using the MySqlCommand approach. Further ...