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


DBIx-Class documentation  | view source Contained in the DBIx-Class distribution.

Index


NAME

Top

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

SYNOPSIS

Top

    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

Top

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

SEE ALSO

Top

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

METHODS

Top

utf8_columns

EXTENDED METHODS

Top

get_column

get_columns

store_column

AUTHOR

Top

Daisuke Murase <typester@cpan.org>

COPYRIGHT

Top


DBIx-Class documentation  | view source Contained in the DBIx-Class distribution.