DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation. |
DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation.
package My::Schema; use base qw/DBIx::Class::Schema::Loader/;
__PACKAGE__->loader_options( debug => 1 );
1;
See the DBIx::Class::Schema::Loader::Base manpage.
SQLite will fail all further commands on a connection if the
underlying schema has been modified. Therefore, any runtime
changes requiring rescan
also require us to re-connect
to the database. The rescan
method here handles that
reconnection for you, but beware that this must occur for
any other open sqlite connections as well.
the DBIx::Class::Schema::Loader manpage, the DBIx::Class::Schema::Loader::Base manpage, the DBIx::Class::Schema::Loader::DBI manpage
DBIx::Class::Schema::Loader::DBI::SQLite - DBIx::Class::Schema::Loader::DBI SQLite Implementation. |