bobf has asked for the wisdom of the Perl Monks concerning the following question:
I decided to play around with DBIx::Class, and Im missing something. I'm having trouble connecting to a sqlite db. I can connect to the db in question using DBI, as follows:
my $dbpath = 'C:/my/path/stats.db'; my $dsn = "dbi:SQLite:$dbpath"; my $dbh = DBI->connect( $dsn, '', '', { RaiseError => 1, AutoCommit => + 1 } );
To use DBIx::Class, I created a Schema.pm file that contains:
which I then use as follows:package My::Schema; use strict; use warnings; use base qw/DBIx::Class::Schema::Loader/; __PACKAGE__->loader_options( relationships => 1 ); 1;
package My::Pkg; use strict; use warnings; use My::Schema; my $dbpath = 'C:/my/path/stats.db'; my $dsn = "dbi:SQLite:$dbpath"; my $schema = My::Schema->connect( $dsn, '', '', { RaiseError => 1, Aut +oCommit => 1 } );
When I try to run this script (on Windows) I get a popup saying "the Perl Cmd Line Interpreter encountered a problem and needs to close". There is no other output to STDOUT.
Any ideas?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Cannot connect to a SQLite db using DBIx::Class
by metaperl (Curate) on Aug 24, 2009 at 10:33 UTC | |
|
Re: Cannot connect to a SQLite db using DBIx::Class
by parv (Parson) on Aug 24, 2009 at 09:49 UTC | |
by bobf (Monsignor) on Aug 24, 2009 at 22:57 UTC | |
by parv (Parson) on Aug 28, 2009 at 13:35 UTC |