From 067e229cc5476d16238f71da7606c717845bf23b Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 4 Oct 2007 03:37:09 +0000 Subject: [PATCH] add debugging option to qsearch --- FS/FS/Record.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 5269ab8cb..7f35265ec 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -214,6 +214,7 @@ The preferred usage is to pass a hash reference of named parameters: 'order_by' => 'ORDER BY something', #'cache_obj' => '', #optional 'addl_from' => 'LEFT JOIN othtable USING ( field )', + 'debug' => 1, } ); @@ -235,6 +236,7 @@ fine in the common case where there are only two parameters: sub qsearch { my($stable, $record, $select, $extra_sql, $order_by, $cache, $addl_from ); + my $debug = ''; if ( ref($_[0]) ) { #hashref for now, eventually maybe accept a list too my $opt = shift; $stable = $opt->{'table'} or die "table name is required"; @@ -244,6 +246,7 @@ sub qsearch { $order_by = $opt->{'order_by'} || ''; $cache = $opt->{'cache_obj'} || ''; $addl_from = $opt->{'addl_from'} || ''; + $debug = $opt->{'debug'} || ''; } else { ($stable, $record, $select, $extra_sql, $cache, $addl_from ) = @_; $select ||= '*'; @@ -282,7 +285,7 @@ sub qsearch { $statement .= " $extra_sql" if defined($extra_sql); $statement .= " $order_by" if defined($order_by); - warn "[debug]$me $statement\n" if $DEBUG > 1; + warn "[debug]$me $statement\n" if $DEBUG > 1 || $debug; my $sth = $dbh->prepare($statement) or croak "$dbh->errstr doing $statement"; -- 2.11.0