in reply to Re^3: DBD::Oracle - Character Encoding Conversion
in thread DBD::Oracle - Character Encoding Conversion

Pardon the breach of etiquette, I am new to these forums.

By manually I meant explicitly. Here is the somewhat counter-intuitive code, where "$value" is from the hashref returned by a fetchall_hashref call:

Encode::_utf8_off($value); $value = Encode::decode("utf8", $value);

$value ends up being a Perl string with the utf8 flag on.

Thanks!