Riales has asked for the wisdom of the Perl Monks concerning the following question:
I can go in, create tables, etc. That's all fine. Then, I connect to it through the Perl DBI module:$ sqlite database.db
But then I can't open the database with the sqlite command afterwards. Does anybody know what's going on? I am using the Dancer web framework if that's relevant.my $dbh = DBI->connect('dbi:SQLite:bandwidth.db', RaiseError=> 1) or d +ie $DBI::errstr;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Opening a SQLite DB after accessing it w/ DBI module
by roboticus (Chancellor) on Feb 25, 2012 at 05:37 UTC | |
by Riales (Hermit) on Feb 25, 2012 at 06:19 UTC | |
by roboticus (Chancellor) on Feb 25, 2012 at 06:39 UTC | |
by ww (Archbishop) on Feb 25, 2012 at 13:18 UTC | |
by Marshall (Canon) on Feb 26, 2012 at 01:04 UTC | |
|
Re: Opening a SQLite DB after accessing it w/ DBI module
by GrandFather (Saint) on Feb 25, 2012 at 05:49 UTC |