in reply to How to report call stack for DBI queries
Assuming that you control the code that's doing the prepare(), a simple approach is to wrap the object that prepare() hands back. Something like:
The wrapping class looks something like:my $sth = $dbh->prepare("SELECT ... WHERE ... ? ..."); $sth = Statement->wrap($sth, "Label"); ... $sth->execute(@args);
You'll probably find that you need to wrap some additional methods.package Statement; sub wrap { my($pkg, $sth, $label) = @_; bless [ $sth, $label ], $pkg; } sub execute { my $self = shift; # tracing, timing code here. E.g., log($self->[1] . " is about to execute"); my $rv = $self->[0]->execute(@args); # timing, logging code here } sub finish { my $self = shift; $self->[0]->finish(); } 1;
The label helps track the statement and makes the logs more readable, and could include the text of the query.
|
---|