in reply to Perl Mysql DBI, using placeholders with unknown variable count
my $query = "SELECT " . join(", ", map { $dbh->quote_identifier($_) } @q_return) . " FROM rma_list WHERE (" . join(', ', ('?') x (keys %q_search) ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Mysql DBI, using placeholders with unknown variable count
by Haioken (Novice) on Aug 18, 2009 at 10:20 UTC | |
by moritz (Cardinal) on Aug 18, 2009 at 10:27 UTC |