DBIx::Class::EncodeColumns - Handle column encodings
package Artist;
__PACKAGE__->load_components(qw/EncodeColumns Core/);
__PACKAGE__->decode_columns('latin-1');
__PACKAGE__->encode_columns('utf-8');
This module allows you to handle column encodings
Use this function to set the default encoding of all your columns. The data of
all columns will be decoded to internal encoding of perl.
Before returning the data form a column, it will be encoded using this encoding
type.
Sascha Kiefer <esskar@cpan.org>
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.