Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-errors.html
When there is an error connecting, the MySqlConnection class will return a MySqlException object. The following code example shows how to manage the response of an application based on the actual error: C# Example ... Because connecting to an ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-blob-reading.html
After a file is loaded into the file table, we can use the MySqlDataReader class to retrieve it. The GetBytes method of the MySqlDataReader is used to load the BLOB into a byte array, which is then written to disk using a FileStream object. The ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-telemetry.html
Starting in Connector/NET 8.1.0, support for OTel is encapsulated in the MySQL.Data.OpenTelemetry NuGet package. Note OTel context forwarding works only with MySQL Enterprise Edition, a commercial product. OpenTelementry (OTel) standardizes ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pfx.html
For the purposes of this example, use test client certificates from the MySQL server repository (./mysql-test/std_data). Creating a Certificate File to Use with the .NET Client From the directory server-repository-root/mysql-test/std_data, issue the ...Instead, Windows includes a certificate store that provides platform-dependent certificates in PFX ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-binary-windows.html
Connector/ODBC 8.0 and below: MySQL Installer: The general MySQL Installer application for Windows can install, upgrade, configure, and manage most MySQL 8.0 products, including Connector/ODBC 8.0 and its prerequisites. Download it from ... Before ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-source-development.html
To just get MySQL Connector/ODBC up and running on your system, use a standard release distribution. To check out the latest source code, visit GitHub: https://github.com/mysql/mysql-connector-odbc To clone the Git repository to your machine, use ...
https://dev.mysql.com/doc/internals/en/dbug-directory.html
Rather, it's a set of public-domain routines which are useful for debugging MySQL programs. The MySQL Server and all .c and .cc programs support the use of this package. How it works: One inserts a function call that begins with DBUG_* in one of the ...For example, in get_password.c, you will find this line: DBUG_ENTER("get_tty_password"); at the start of a routine, and this line: DBUG_RETURN(my_strdup(to,MYF(MY_FAE))); at the end of the ...
https://dev.mysql.com/doc/internals/en/determining-authentication-method.html
Method used for authentication is tied to the user account and stored in the plugin column of mysql.user table. Only then server can look-up the mysql.user table and find the authentication method to be used. Up to MySQL 4.0 the MySQL protocol only ...Client informs about the user account it wants to log into in the Handshake Response ...
https://dev.mysql.com/doc/internals/en/format-description-event.html
Note added in MySQL 5.0.0 as replacement for START_EVENT_V3 Payload 2 binlog-version string[50] mysql-server version 4 create timestamp 1 event header length string[p] event type header lengths Fields binlog-version (2) -- version of this binlog ...
https://dev.mysql.com/doc/internals/en/interface-to-third-party-tools.html
Previously, third-party tools that need to determine the MySQL version from the MySQL source read the configure.in file in the top-level source directory. For example, the AC_INIT line for MySQL 5.5.7-rc looked like this: AC_INIT([MySQL Server], ...