This information is accurate as of November 2020. It may change as product versions change.
In order to use Unicode in your MySQL database, you must be using MySQL v4.1 or later.
Support for Unicode was introduced in MySQL Connector version 5. You must be using this version, or a more recent one, to use access Unicode data with AQT.
For MySQL Connector version 8, when you install the Connector you will get two ODBC Drivers:
You must use the Unicode driver.
Unicode strings are held in columns with a unicode character set. The character set is specified either when the column is defined, or from the character_set_database system variable.
Example:
Create table unicode_test (unicol varchar(20) character set utf8mb4)
You can see the character set of your columns with the "Column character sets" display on the Database Explorer.
In MySQL, Unicode literals can be specified in a number of ways: