in reply to Re^4: How to call Encode::decode from Perl XS
in thread How to call Encode::decode from Perl XS

I don't believe I do need to dynamically load Encode from XS so long as using it from DBD::ODBC's ODBC.pm makes decode usable in XS via call_xx.

  • Comment on Re^5: How to call Encode::decode from Perl XS

Replies are listed 'Best First'.
Re^6: How to call Encode::decode from Perl XS
by ikegami (Patriarch) on May 09, 2011 at 16:29 UTC
    Once a module is loaded, it's loaded for the whole interpreter. If you don't import decode, you'll need to qualify the function name (Encode::decode(...)).