in reply to persistent database connection without Apache::DBI
i'm sure if you already figured this out, but your connection is persistent because you are using DBI->connect_cached() rather than DBI->connect().
$dbh = DBI->connect_cached(...) # persistent $dbh = DBI->connect(...) # not persistent
best,
chuck
|
|---|