[DBD-SQLite] problems using sqlite with mod_perl in apache

2009-12-01 Thread Mike Campbell
I've developed a small app that uses a webpage to insert/delete data into a sqlite database. The script work find when I run them from the command line but not when run from the webpage. For example, using the following code: $db =

Re: [DBD-SQLite] problems using sqlite with mod_perl in apache

2009-12-01 Thread Mike Campbell
= 'the SQLite v2 is ' . DBD::SQLite2::VERSION; Correction, you need to add a $ sigil like this: use DBD::SQLite; my $version3 = 'the SQLite v3 is ' . $DBD::SQLite::VERSION; use DBD::SQLite2; my $version2 = 'the SQLite v2 is ' . $DBD::SQLite2::VERSION; -- Darren Duncan -- Mike Campbell