DBIx::Class::UTF8Columns - Force UTF8 flag on columns |
DBIx::Class::UTF8Columns - Force UTF8 (Unicode) flag on columns
package Artist; __PACKAGE__->load_components(qw/UTF8Columns Core/); __PACKAGE__->utf8_columns(qw/name description/); # then belows return strings with utf8 flag $artist->name; $artist->get_column('description');
This module allows you to get columns data that have utf8 (Unicode) flag.
the Template::Stash::ForceUTF8 manpage, the DBIx::Class::UUIDColumns manpage.
Daisuke Murase <typester@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
DBIx::Class::UTF8Columns - Force UTF8 flag on columns |