in reply to Class::DBI and mod_perl 2

To get the current request object under mod_perl 2 you need to use Apache2::RequestUtil->request(). Here is a link to the docs on that.

You'll find that whole page covers everything you'll need to know to translate mod_perl 1.x code to mod_perl 2.x code.

If you haven't done so already I'd also check into DBIx::Class , personally I gave up on using Class::DBI long ago after running into all sorts of odd problems that I couldn't find easy solutions to.

Frank Wiles <frank@revsys.com>
www.revsys.com

Replies are listed 'Best First'.
Re^2: Class::DBI and mod_perl 2
by artemave (Beadle) on May 04, 2007 at 17:22 UTC
    Thank you, Frank.

    This information is really helpful.

    Artem.

    P.S. Defintely, I've looked through RequestUtil methods couple of times, but failed to notice what I need. Thanx again.