Read this property value to ensure that UTF8 character set is used for connection to MySQL server. This property is read-only. Syntax: property Utf8Used: boolean; Description: DAC for MySQL supports Unicode strings only if connection character set is UTF8. Utf8Used property is used by DAC for MySQL to enable conversion between UTF8 encoded strings received from server and Delphi's UnicodeString data type internal representation. You can set your connection character set using ConnectionCharacterSet property. Connection character set can be UTF8 even if you don't set TMySQLDatabase.ConnectionCharacterSet property to 'utf8', e.g. if the server is configured to use UTF8 as default connection character set. You can use Utf8Used property to ensure that UTF8 character set is used in the connection to MySQL server.
See also: ConnectionCollation, ConnectionCharacterSet properties |