Search Results
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-datajunction.html
You have to change it to output VARCHAR rather than ENUM, as it exports the latter in a manner that causes MySQL problems.
https://dev.mysql.com/doc/connectors/en/connector-python-example-ddl.html
All DDL (Data Definition Language) statements are executed using a handle structure known as a cursor. The following examples show how to create the tables of the Employee Sample Database. In a MySQL server, tables are very long-lived objects, and ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core.html
MySQL Connector/NET integrates support for Entity Framework Core (EF Core). The requirements and configuration of EF Core depend on the version of Connector/NET installed and the features that you require. Configuration with MySQL To use Entity ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-datatypes.html
The following table illustrates how Connector/ODBC maps the server data types to default SQL and C data types.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-datajunction.html
You have to change it to output VARCHAR rather than ENUM, as it exports the latter in a manner that causes MySQL problems.
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
All DDL (Data Definition Language) statements are executed using a handle structure known as a cursor. The following examples show how to create the tables of the Employee Sample Database. In a MySQL server, tables are very long-lived objects, and ...
https://dev.mysql.com/doc/internals/en/charsets.html
Character sets are used by MySQL when storing information, both to ensure that the information is stored (and returned) in the correct format, but also for the purposes of collation and sorting. Each character set supports one or more collations, ...
https://dev.mysql.com/doc/internals/en/event-data-for-specific-event-types.html
The value corresponds to elements of enum Item_result defined in include/mysql_com.h (STRING_RESULT=0, REAL_RESULT=1, INT_RESULT=2, ROW_RESULT=3, DECIMAL_RESULT=4). To find the meanings of these values, look at enum_field_types in the mysql_com.h ...
https://dev.mysql.com/doc/internals/en/event-header-fields.html
These numbers are defined in the enum Log_event_type enumeration in log_event.h. The value of this constant is 13 in MySQL 3.23 (v1 format), and 19 in MySQL 4.0 and up (v3 format and up). The first 19 bytes for v4 are the same as those for v3.
https://dev.mysql.com/doc/internals/en/extra.html
Synopsis virtual int extra ( operation); enum ha_extra_function operation ; Description This is the extra method. Purpose Passes hints from the server to the storage engine. extra() is called whenever the server wishes to send a hint to the storage ...