2006-02-04 20:45:40 +01:00
|
|
|
DBIx::Class::Schema::Loader automates the definition of a
|
2006-05-24 12:40:25 +02:00
|
|
|
DBIx::Class::Schema by scanning database table definitions and setting
|
2006-07-11 20:39:37 +02:00
|
|
|
up the columns, primary keys, and relationships.
|
2006-02-04 20:45:40 +01:00
|
|
|
|
2006-07-11 20:39:37 +02:00
|
|
|
DBIx::Class::Schema::Loader currently supports only the DBI storage
|
|
|
|
type. It has explicit support for DBD::Pg, DBD::mysql, DBD::DB2, and
|
|
|
|
DBD::SQLite. Other DBI drivers may function to a greater or lesser
|
|
|
|
degree with this loader, depending on how much of the DBI spec they
|
|
|
|
implement, and how standard their implementation is. Patches to make
|
|
|
|
other DBDs work correctly welcome.
|
2006-02-04 20:45:40 +01:00
|
|
|
|
2006-05-24 12:40:25 +02:00
|
|
|
See DBIx::Class::Schema::Loader::DBI::Writing for notes on writing your
|
|
|
|
own vendor-specific subclass for an unsupported DBD driver.
|
2006-02-04 20:45:40 +01:00
|
|
|
|
2006-05-24 12:40:25 +02:00
|
|
|
This module requires DBIx::Class 0.06 or later, and obsoletes the older
|
|
|
|
DBIx::Class::Loader.
|
2006-02-13 10:41:29 +01:00
|
|
|
|
2006-05-24 12:40:25 +02:00
|
|
|
This module is designed more to get you up and running quickly against
|
|
|
|
an existing database, or to be effective for simple situations, rather
|
|
|
|
than to be what you use in the long term for a complex database/project.
|
2006-02-13 10:41:29 +01:00
|
|
|
|
2006-02-04 20:45:40 +01:00
|
|
|
WWW: http://search.cpan.org/dist/DBIx-Class-Schema-Loader/
|