Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Reading string from csv, encoding problems

HatikAug 23 2017 — edited Sep 8 2017

I am reading and parsing lines from csv file. It works fine, but there is a problem: when the text inside the string is written in Russian(Cyrillic) forms write them as ???. When I try to open csv with excel or notepad it however displays correctly. How can I solve this issue?

I read and parse lines like follows

Client_Text_IO.Get_Line ( input_file, linebuffer );

    

     create_record;   

     v_array := apex_util.string_to_table(linebuffer, ';');

   for i in 1..v_array.count

   loop   

      dbms_output.put_line(v_array(i));

end loop;

This post has been answered by cormaco on Aug 28 2017
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 28 2017
Added on Aug 23 2017
7 comments
988 views