Add startup sanity check of the ::DBI::Replicated method dispatch tables
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Storage / DBI / DB2.pm
index a5b98c3..31b9230 100644 (file)
@@ -7,6 +7,8 @@ use base qw/DBIx::Class::Storage::DBI/;
 use mro 'c3';
 
 __PACKAGE__->sql_limit_dialect ('RowNumberOver');
+__PACKAGE__->sql_quote_char ('"');
+__PACKAGE__->datetime_parser_type('DateTime::Format::DB2');
 
 sub _dbh_last_insert_id {
     my ($self, $dbh, $source, $col) = @_;
@@ -19,7 +21,6 @@ sub _dbh_last_insert_id {
     return @res ? $res[0] : undef;
 }
 
-sub datetime_parser_type { "DateTime::Format::DB2"; }
 
 1;