• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/DBIx/Class/H03-Nov-2006-12643

t/H03-Nov-2006-2012

Build.PLH A D24-Oct-2006381 1412

CHANGESH A D03-Nov-2006110 73

MANIFESTH A D03-Nov-2006155 1110

META.ymlH A D03-Nov-2006473 2019

Makefile.PLH A D03-Nov-2006449 1513

READMEH A D03-Nov-2006888 3325

README

1NAME
2    DBIx::Class::EncodeColumns - Handle column encodings
3
4SYNOPSIS
5        package Artist;
6        __PACKAGE__->load_components(qw/EncodeColumns Core/);
7        __PACKAGE__->decode_columns('latin-1');
8        __PACKAGE__->encode_columns('utf-8');
9
10DESCRIPTION
11    This module allows you to handle column encodings
12
13METHODS
14  decode_columns($encoding)
15    Use this function to set the default encoding of all your columns. The
16    data of all columns will be decoded to internal encoding of perl.
17
18  encode_columns($encoding)
19    Before returning the data form a column, it will be encoded using this
20    encoding type.
21
22EXTENDED METHODS
23  get_column
24  get_columns
25  store_column
26AUTHOR
27    Sascha Kiefer <esskar@cpan.org>
28
29COPYRIGHT
30    This program is free software; you can redistribute it and/or modify it
31    under the same terms as Perl itself.
32
33