Please support MBCS parameter name.
Posted: Tue 13 Aug 2013 03:54
Hello,
i'm using UniDac 5.0.2 with Japanese Delphi7 (MS-CodePage is 923).
At oracle 11g, the following SQL statement , Paramater name writing by MBCS(Japanese katakana).
http://en.wikipedia.org/wiki/Japanese_writing_system
This name was not found.
Hex code is 8352(コ) 815B(ー) 8368(ド). TrailByte 0x5B is '[' by ascii.
Looks like not support MBCS SQL strings in TParser.
There are many MBCS(Not unicode) users in Japan.
Can this be supported?
Thanks.
i'm using UniDac 5.0.2 with Japanese Delphi7 (MS-CodePage is 923).
At oracle 11g, the following SQL statement , Paramater name writing by MBCS(Japanese katakana).
http://en.wikipedia.org/wiki/Japanese_writing_system
Code: Select all
SQL.text := 'select * from テーブル where コード = :コード';
ParambyName('コード').asstring = 'code1';
Hex code is 8352(コ) 815B(ー) 8368(ド). TrailByte 0x5B is '[' by ascii.
Looks like not support MBCS SQL strings in TParser.
There are many MBCS(Not unicode) users in Japan.
Can this be supported?
Thanks.