Swedish Collation used on Cast
Posted: Sat 12 Jul 2014 14:37
if I run the following in HeidiSQL, I get the collation for CFC is (blank) which I assume refers to the default collation for the database of utf8_general_ci. If I run it with TMyQuery, the default collation is latin1_swedish_ci. Is there a setting I am missing for this or is MyDAC doing something odd? I am running XE3 and version 8.3.8 for RAD Studio XE3. I am running MySQL 5.5.27.
drop table if exists _answer;
create table _answer
select distinct d.id, cast("" as char(1)) as CFC from donmail d
where d.id <280
drop table if exists _answer;
create table _answer
select distinct d.id, cast("" as char(1)) as CFC from donmail d
where d.id <280