DBIx::Class::Loader::Generic - Generic DBIx::Class::Loader Implementation. |
DBIx::Class::Loader::Generic - Generic DBIx::Class::Loader Implementation.
See the DBIx::Class::Loader manpage
Available constructor options are:
List of additional base classes your table classes will use.
List of additional base classes, that need to be leftmost.
List of additional classes which your table classes will use.
Only load tables matching regex.
Exclude tables matching regex.
Enable debug messages.
DBI Data Source Name.
Namespace under which your table classes will be initialized.
Password.
Try to automatically detect/setup has_a and has_many relationships.
An hashref, which contains exceptions to Lingua::EN::Inflect::PL(). Useful for foreign language column names.
Username.
Not intended to be called directly. This is used internally by the
new()
method in the DBIx::Class::Loader manpage.
Returns a tables class.
my $class = $loader->find_class($table);
Returns a sorted list of classes.
my $@classes = $loader->classes;
Overload to enable debug messages.
Returns a sorted list of tables.
my @tables = $loader->tables;
the DBIx::Class::Loader manpage
DBIx::Class::Loader::Generic - Generic DBIx::Class::Loader Implementation. |