X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FSQLite.pm;h=6943c77de5b085fcd82f892c47468e71f2427f14;hb=aca3b4c3cd5df48ab0dd98ff8e54f61a1ea27b8b;hp=f06f87831b19e1dcf513ff1594a94d3bf0a5b1a3;hpb=8273e845426f0187b4ad6c4a1b42286fa09a648f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index f06f878..6943c77 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLite.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLite.pm @@ -15,6 +15,24 @@ __PACKAGE__->sql_limit_dialect ('LimitOffset'); __PACKAGE__->sql_quote_char ('"'); __PACKAGE__->datetime_parser_type ('DateTime::Format::SQLite'); +=head1 NAME + +DBIx::Class::Storage::DBI::SQLite - Automatic primary key class for SQLite + +=head1 SYNOPSIS + + # In your table classes + use base 'DBIx::Class::Core'; + __PACKAGE__->set_primary_key('id'); + +=head1 DESCRIPTION + +This class implements autoincrements for SQLite. + +=head1 METHODS + +=cut + sub backup { require File::Spec; @@ -158,20 +176,6 @@ sub connect_call_use_foreign_keys { 1; -=head1 NAME - -DBIx::Class::Storage::DBI::SQLite - Automatic primary key class for SQLite - -=head1 SYNOPSIS - - # In your table classes - use base 'DBIx::Class::Core'; - __PACKAGE__->set_primary_key('id'); - -=head1 DESCRIPTION - -This class implements autoincrements for SQLite. - =head1 AUTHORS Matt S. Trout