Re: [sqlite] In-memory databases from Perl

2009-03-16 Thread Jean-Denis Muys
On 3/16/09 3:24 PM, "P Kishor" wrote: > Jean-Denis, do consider correcting the wiki so others after you are > not similarly misled. Done. ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-use

Re: [sqlite] In-memory databases from Perl

2009-03-16 Thread P Kishor
On Mon, Mar 16, 2009 at 9:16 AM, Jean-Denis Muys wrote: > > On 3/16/09 3:10 PM, "P Kishor" wrote: > >> On Mon, Mar 16, 2009 at 9:03 AM, Jean-Denis Muys >> wrote: >>> Now I want to use an in-memory database, so I replaced my original connect >>> statement with the one suggested at >>> http://www

Re: [sqlite] In-memory databases from Perl

2009-03-16 Thread Jean-Denis Muys
On 3/16/09 3:10 PM, "P Kishor" wrote: > On Mon, Mar 16, 2009 at 9:03 AM, Jean-Denis Muys wrote: >> Now I want to use an in-memory database, so I replaced my original connect >> statement with the one suggested at >> http://www.sqlite.org/cvstrac/wiki?p=PerlNotes : >> >>     my $dbh = DBI->Conn

Re: [sqlite] In-memory databases from Perl

2009-03-16 Thread P Kishor
On Mon, Mar 16, 2009 at 9:03 AM, Jean-Denis Muys wrote: > Hello, > > I am quite a newbie but I already spent a significant amount of time on > Google, to no avail. > > I have a very small Perl program which exercises the basic SQLite3 features, > and it works very well. > > I connect from Perl to

Re: [sqlite] In-memory databases from Perl

2009-03-16 Thread Jean-Denis Muys
On 3/16/09 3:03 PM, "Jean-Denis Muys" wrote: > Now I want to use an in-memory database, so I replaced my original connect > statement with the one suggested at > http://www.sqlite.org/cvstrac/wiki?p=PerlNotes : > > my $dbh = DBI->Connect("dbi:SQLite:dbname=:memory:"); > > However, this d