1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
package # Hide from PAUSE
ImplicitInflate;
# Test class for the testing of Implicit inflation
# in CDBI Classes using Compat layer
# See t/cdbi/70-implicit_inflate.t
use strict;
use warnings;
use base 'DBIC::Test::SQLite';
__PACKAGE__->set_table('Date');
__PACKAGE__->columns( Primary => 'id' );
__PACKAGE__->columns( All => qw/ update_datetime text/);
__PACKAGE__->has_a(
update_datetime => 'MyDateStamp',
);
sub create_sql {
# SQLite doesn't support Datetime datatypes.
return qq{
id INTEGER PRIMARY KEY,
update_datetime TEXT,
text VARCHAR(20)
}
}
{
package MyDateStamp;
use DateTime::Format::SQLite;
sub new {
my ($self, $value) = @_;
return DateTime::Format::SQLite->parse_datetime($value);
}
}
1;
|