DBIx::Class::UTF8Columns - Force UTF8 flag on columns


NAME

DBIx::Class::UTF8Columns - Force UTF8 (Unicode) flag on columns


SYNOPSIS

    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');


DESCRIPTION

This module allows you to get columns data that have utf8 (Unicode) flag.


SEE ALSO

the Template::Stash::ForceUTF8 manpage, the DBIx::Class::UUIDColumns manpage.


METHODS

utf8_columns


EXTENDED METHODS

get_column

get_columns

store_column


AUTHOR

Daisuke Murase <typester@cpan.org>


COPYRIGHT

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