fixed a table name.

This commit is contained in:
Matthew Wilson 2006-04-16 01:29:51 +00:00
parent 43ec03c6c0
commit b6f0e9e75c
4 changed files with 8 additions and 5 deletions

View file

@ -336,8 +336,11 @@ A sql statement string.
sub query {
my $self = shift;
my $query = shift;
my $placeholders = shift;
$self->{_queryCount}++;
$self->debug("query ".$self->{_queryCount}.': '.shift);
my $plac = scalar(@{$placeholders}) ? "\n  with placeholders:  ['".join("', '",@{$placeholders})."']" : '';
$self->debug("query ".$self->{_queryCount}.': '.$query.$plac);
}