From: Graham Knop Date: Tue, 17 Jan 2012 17:20:34 +0000 (-0500) Subject: correct organization for SQLite POD X-Git-Tag: v0.08197~129 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2fa97c7d98f760f1f87e1df062d6362c8511257d;p=dbsrgits%2FDBIx-Class.git correct organization for SQLite POD --- 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