in reply to Perl DBI escape reserved word in Ingres database
Which is line 104 ?
Do a test without the placeholder
pojmy $sql = q! SELECT DISTINCT "open" FROM mytable !; my $ref = $dbh->selectall_arrayref($sql); @id = map{ $_->[0] } @$ref; print join (", ", @id), "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl DBI escape reserved word in Ingres database
by jtech (Sexton) on Feb 22, 2019 at 14:10 UTC | |
by poj (Abbot) on Feb 22, 2019 at 15:05 UTC | |
by jtech (Sexton) on Feb 22, 2019 at 15:23 UTC | |
|
Re^2: Perl DBI escape reserved word in Ingres database
by jtech (Sexton) on Feb 22, 2019 at 14:15 UTC |