X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FInflateColumn%2FDateTime.pm;h=f92481db22be0b97b88d01f26fc6ae664ce17f80;hb=4b946902c9546e42cd9d73e5c8ba12767d8f7e2a;hp=969e50e2372126894da62d5ccd8aa219e31d51d1;hpb=d386b8dd0c01bb7eccc80964071d6da8500d4261;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/InflateColumn/DateTime.pm b/lib/DBIx/Class/InflateColumn/DateTime.pm index 969e50e..f92481d 100644 --- a/lib/DBIx/Class/InflateColumn/DateTime.pm +++ b/lib/DBIx/Class/InflateColumn/DateTime.pm @@ -6,15 +6,15 @@ use base qw/DBIx::Class/; =head1 NAME -DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from datetime columns. +DBIx::Class::InflateColumn::DateTime - Auto-create DateTime objects from date and datetime columns. =head1 SYNOPSIS Load this component and then declare one or more -columns to be of the datetime datatype. +columns to be of the datetime, timestamp or date datatype. package Event; - __PACKAGE__->load_components(qw/InflateColumn::DateTime/); + __PACKAGE__->load_components(qw/InflateColumn::DateTime Core/); __PACKAGE__->add_columns( starts_when => { data_type => 'datetime' } ); @@ -29,7 +29,11 @@ Then you can treat the specified column as a L object. This module figures out the type of DateTime::Format::* class to inflate/deflate with based on the type of DBIx::Class::Storage::DBI::* that you are using. If you switch from one database to a different -one your code will continue to work without modification. +one your code should continue to work without modification (though note +that this feature is new as of 0.07, so it may not be perfect yet - bug +reports to the list very much welcome). + +For more help with using components, see L. =cut @@ -48,17 +52,21 @@ directly called by end users. sub register_column { my ($self, $column, $info, @rest) = @_; $self->next::method($column, $info, @rest); - if (defined($info->{data_type}) && $info->{data_type} =~ /^datetime$/i) { + return unless defined($info->{data_type}); + my $type = lc($info->{data_type}); + $type = 'datetime' if ($type eq 'timestamp'); + if ($type eq 'datetime' || $type eq 'date') { + my ($parse, $format) = ("parse_${type}", "format_${type}"); $self->inflate_column( $column => { inflate => sub { my ($value, $obj) = @_; - $obj->_datetime_parser->parse_datetime($value); + $obj->_datetime_parser->$parse($value); }, deflate => sub { my ($value, $obj) = @_; - $obj->_datetime_parser->format_datetime($value); + $obj->_datetime_parser->$format($value); }, } );