NAME

Fake::Encode - Fake Encode module support for perl 5.00503

SYNOPSIS

use 5.00503;
use Fake::Encode;
use DBI;

...;

# turn off the utf8 flag as soon as possible to avoid mojibake
while (my @row = map { Encode::encode('cp932',$_) } $sth->fetchrow_array()) {
    ...;
}

DESCRIPTION

Fake::Encode provides a scripting environment with long life by dummy subroutines Encode::encode() and Encode::decode().

AUTHOR

INABA Hitoshi <ina@cpan.org>

This project was originated by INABA Hitoshi.

LICENSE AND COPYRIGHT

This software is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

SEE ALSO