The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

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

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.