Jonas Malmsten
Member²
I have problems reading and writing language specific characters (Swedish aa ae o, german u etc). We have an Oracle 8 server running on a unix box and a web application (storyserver/tcl based) that writes data into some tables, long and varchar2 fields.
We also have an administrative tool written in Delphi using DOA 3.3. I can't get it to read or write the same forreign characters as the web application.
I have managed to read varchar2 fields and get it right by doing an ascii dump of the field like this:
select dump(text) from mytable;
and then having a snippet in delphi do a conversion like:
s := '';
for i := 1 to NumbersInDumpText do
s := s + chr(StrToInt(OneNumberInDumpedText));
//Jonas
We also have an administrative tool written in Delphi using DOA 3.3. I can't get it to read or write the same forreign characters as the web application.
I have managed to read varchar2 fields and get it right by doing an ascii dump of the field like this:
select dump(text) from mytable;
and then having a snippet in delphi do a conversion like:
s := '';
for i := 1 to NumbersInDumpText do
s := s + chr(StrToInt(OneNumberInDumpedText));
//Jonas