The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Fake::Encode - Fake Encode module for compatible scripting

SYNOPSIS

  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> in a CPAN

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