Re: DBI under SOAP/mod_perl

2010-07-20 Thread Dermot
Hi Octavian, On 19 July 2010 06:07, Octavian Rasnita wrote: > Does the $dsn contain the full path to the database? Yes. The dsn line is declared like this: DBI SQLite3 ### my $dsn = 'dbi:SQLite:dbname=/var/db/MyApp/myapp.db'; It's outside the constructor which I am not sure is good prac

Re: DBI under SOAP/mod_perl

2010-07-18 Thread Octavian Rasnita
Does the $dsn contain the full path to the database? -- Octavian - Original Message - From: "Dermot" To: "Perl Beginners" Sent: Friday, July 16, 2010 7:29 PM Subject: DBI under SOAP/mod_perl Hello All, (This is perl, v5.8.8). Sorry if this is a bit s

DBI under SOAP/mod_perl

2010-07-18 Thread Dermot
Hello All, (This is perl, v5.8.8). Sorry if this is a bit specialised (EG not v. beginner) but I'm getting rather frustrated and could use some help. I have a strange issue with a DBI/DBD::SQLite. I have a class that creates an instance of DBI, EG: package Foo; use strict; use warnings; use DB