Incorrect charset recognition for query field
Posted: Tue 25 Dec 2007 15:31
MyDevStido v.2.10.77.1
Create database with DEFAULT CHARACTER SET utf8.
Configure connection in MyDevStudio to use Unicode.
returns
while
returns correct string
Create database with DEFAULT CHARACTER SET utf8.
Configure connection in MyDevStudio to use Unicode.
Code: Select all
select concat(123, 'АБВ');
Code: Select all
123АБВ
Code: Select all
select cast(concat(123, 'АБВ') as char);
Code: Select all
123АБВ