NAME
Class::DBI::Loader::SQLite - Class::DBI::Loader SQLite implementation.
SYNOPSIS
use Class::DBI::Loader;
# $loader is a Class::DBI::Loader::SQLite
my $loader = Class::DBI::Loader->new(
dsn => "dbi:SQLite:dbname=/path/to/dbfile",
namespace => "Data",
);
my $class = $loader->find_class('film'); # $class => Data::Film
my $obj = $class->retrieve(1);
DESCRIPTION
please see Class::DBI::Loader
AUTHOR
IKEBE Tomohiro <ikebe@edge.co.jp>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.