I'm trying to just count number of database queries and the time spent waiting on the database.
I can use this to just gather grand totals: DBI::Profile->new( Path => [ ] ); The total time is fine even if it includes the small amount of time in DBI instead of directly waiting on the database. But, the counts are do not represent just trips to the database, rather apparently counts of all methods called (e.g. a prepare and execute counts as 2). Using: DBI::Profile->new( Path => [ '!MethodName' ] ); might be ok, but I'd have to then find all the methods that go to the db (e.g. "execute", "do"). Can I use DBI::Profile to just gather up counts to the database? Thanks, -- Bill Moseley mose...@hank.org