On Fri, Apr 25, 2008 at 9:43 AM, Slinky <[EMAIL PROTECTED]> wrote: > I'm making use of the two to maintain a pool of connections to Oracle.
Well, you're not really. :) Apache::DBI doesn't do what most people would consider "pooling" since sharing connections between processes is not possible. It just makes your connections persistent so that you don't have to reconnect each time. > Want I'd like to know is, is there a way to limit the size of the pool? Either set the number of processes low, as Doug suggested, or don't use Apache::DBI on your dev server. - Perrin