DBIx::Class::UTF8Columns.3pm

Langue: en

Version: 2009-05-24 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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> 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.