Hi, I've been very happy using Apache::DBI in the mod_perl environment, which provides connection reuse for my mod_perl modules. Recently I discovered the wonderful module Class::DBI, I'm wondering whether Apache::DBI will do similar magic for Class::DBI. My understanding is that Apache::DBI just intercepts all DBI calls for Apache/mod_perl, which presumably will also intercept calls from within Class::DBI, any potential problems (such as transactions/rollbacks)? Aslo, can one use Apache::DBI outside of the Apache/mod_perl environment? e.g., for my own server in POE, can I somehow use Apache::DBI or something similar to provide connection pooling/reuse? Thanks.