in reply to Re^4: SQLite with mod_perl
in thread SQLite with mod_perl
This would ensure that each user would get a per-process database handle. Note that you can't share database handles across processes unless you use something single process like FastCGI.my $dbh = DBI->connect("dbi:SQLite:dbname=$dbfile", "", "", { private_ +username => $username });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: SQLite with mod_perl
by punkish (Priest) on Oct 09, 2010 at 16:43 UTC |