Hi,
I am currently trying to get an application to support Turkish
language...
The exact scenario is that we are trying to execute a BULK INSERT query
in our MS SQL database based on a data file we have. The datafile
itself is stored in ANSI format but has Turkish characters like 'S'
which is represented in the hex code 0xDE. If I import this file into
the DB I get the character 'Þ' instead which is U+00DE instead of
getting U+015E.
I tried to use mbstowcs() and other conversion functions but none of
them help me to get 'S'. Any ideas on proper conversion?
Thanks and regards,
Ankan
I am currently trying to get an application to support Turkish
language...
The exact scenario is that we are trying to execute a BULK INSERT query
in our MS SQL database based on a data file we have. The datafile
itself is stored in ANSI format but has Turkish characters like 'S'
which is represented in the hex code 0xDE. If I import this file into
the DB I get the character 'Þ' instead which is U+00DE instead of
getting U+015E.
I tried to use mbstowcs() and other conversion functions but none of
them help me to get 'S'. Any ideas on proper conversion?
Thanks and regards,
Ankan
Comment