DBIx::Class::PK::Auto::SQLite - (DEPRECATED) Automatic primary key class for SQLite


DBIx-Class documentation Contained in the DBIx-Class distribution.

Index


NAME

Top

DBIx::Class::PK::Auto::SQLite - (DEPRECATED) Automatic primary key class for SQLite

SYNOPSIS

Top

Just load PK::Auto instead; auto-inc is now handled by Storage.

AUTHORS

Top

Matt S Trout <mst@shadowcatsystems.co.uk>

LICENSE

Top

You may distribute this code under the same terms as Perl itself.


DBIx-Class documentation Contained in the DBIx-Class distribution.

package # hide package from pause
  DBIx::Class::PK::Auto::SQLite;

use strict;
use warnings;

use base qw/DBIx::Class/;

__PACKAGE__->load_components(qw/PK::Auto/);

1;