in reply to Problem in inserting Spanish characters(accent) into Oracle
As to the characters being correctly inserted, try and run a test using module Unicode::MapUTF8$ENV{NLS_LANG} = "AMERICAN_AMERICA.UTF8";
use Unicode::MapUTF8 qw(to_utf8 from_utf8); ... #convert into utf8 $str = to_utf8({ -string => 'Your string here', -charset => 'ISO-8859- +1' }); # TODO: insert into DB ..... # TODO: select stuff from database, and then $str = from_utf8({-string => $str_retrieved, -charset => 'ISO-8859-1' +}); # TODO: now check the value of $str
|
|---|