fixed a table name.
This commit is contained in:
parent
43ec03c6c0
commit
b6f0e9e75c
4 changed files with 8 additions and 5 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue