From: Andy Grundman Subject: Re: logging the queries Date: 14:16 on 06 Dec 2004
Jasper Cramwinckel wrote:
> Hi,> > Is there a way to find out what queries Class::DBI sends to the> database?
Not from within Class::DBI or Ima::DBI, but you can get it from DBI:
DBI->trace(2, "/tmp/trace.log");
-Andy