Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-versions.html
The following table shows the versions of ADO.NET, .NET (Core and Framework), and MySQL Server that are supported or required by MySQL Connector/NET. MySQL Connector/NET 9.x series is a continuation of Connector/NET 8.x series, but now named to ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-borland.html
The only known problem is that when the table schema changes, query fields are not updated. With all Borland applications where the Borland Database Engine (BDE) is used, follow these steps to improve compatibility: Update to BDE 3.2 or newer.
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-blob-writing.html
After assigning the byte array as a parameter of the MySqlCommand object, the ExecuteNonQuery method is called and the BLOB is inserted into the file table. To write a file to a database, we need to convert the file to a byte array, then use the ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-sql-command.html
When a connection has been established with the MySQL database, the next step enables you to perform database operations. This task can be achieved through the use of the MySqlCommand object. After it has been created, there are three main methods ...
https://dev.mysql.com/doc/connector-net/en/connector-net-versions.html
The following table shows the versions of ADO.NET, .NET (Core and Framework), and MySQL Server that are supported or required by MySQL Connector/NET. MySQL Connector/NET 9.x series is a continuation of Connector/NET 8.x series, but now named to ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-visualbasic.html
To be able to update a table, you must define a primary key for the table. This means that some queries like SHOW PROCESSLIST do not work properly. The fix is to use OPTION=16384 in the ODBC connect string or to select the Change BIGINT columns to ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-query.html
ccnx.query('DROP TABLE IF EXISTS t') ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT PRIMARY KEY)') ccnx.query('INSERT INTO t (i) VALUES (NULL),(NULL),(NULL)') ccnx.query('SELECT LAST_INSERT_ID()') row = ccnx.fetch_row() ...raw_as_string ...
https://dev.mysql.com/doc/internals/en/character-set.html
A given collation implies the character set and the names of both can be seen in the INFORMATION_SCHEMA COLLATIONS table. MySQL has a very flexible character set support as documented in Character Sets, Collations, Unicode. Number Hex Character Set ...
https://dev.mysql.com/doc/internals/en/com-field-list.html
COM_FIELD_LIST: get the column definitions of a table Payload 1 [04] COM_FIELD_LIST string[NUL] table string[EOF] field wildcard Returns COM_FIELD_LIST response Implemented By mysql_list_fields() . Note As of MySQL 5.7.11, COM_FIELD_LIST is ...
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. Client informs about the user account ...