Could anyone advise how i can retrieve Chinese characters (or other unicode characters) from MSSQL in tpl ?
I have added "qq{SET NAMES 'utf8';};" , but it doesn't work.
$dbh = DBI->connect("DBI

DBC:$database", $username, $password);
my $sql = qq{SET NAMES 'utf8';};
$dbh->do($sql);
I also tried "iw_sql_open", but make no different.
(PS: I m able to see the characters in database)
Thanks