RE: DBI and pooling

1999-11-03 Thread Gerald Richter
So I'm starting development on a project with multiple components which will be talking to an Oracle 8 database, and I'm trying to understand what the various options are. The project will consist of HTML::Embperl pages, modperl CGIs, and random Perl processes, all of which will connect to

RE: DBI and pooling

1999-01-02 Thread Gerald Richter
Apache::DBI caches the database handle, while connect_cached cache the statement handle, so you could/should use both together. You're thinking of prepare_cached. Oops, you are right! Wrote this mail too early in the morning... Gerald