in reply to Re: fetchall_arrayref hangs with placeholders query with no results
in thread fetchall_arrayref hangs with placeholders query with no results
the syntax
select ? from ... where ..isn't valid SQL.
Are you sure? Any links to documents that specify that?
At least SQLite accepts it:
#!/usr/bin/perl use strict; use warnings; use DBI; my $dbh=DBI->connect('dbi:SQLite:dbname=/tmp/foo.sqlite','','',{ Raise +Error => 1 }); my $sth=$dbh->prepare('select ? as answer'); $sth->execute(42); $sth->dump_results();
'42' 1 rows
PostgreSQL can't determinate the column type without a little help, but accepts it with type information. SQLite has a very relaxed relation to data types, so it is no surprise that SQLite does NOT need help.
#!/usr/bin/perl use strict; use warnings; use DBI qw( SQL_INTEGER ); my $dbh=DBI->connect('dbi:Pg:dbname=postgres','postgres','postgres',{ +RaiseError => 1 }); my $sth=$dbh->prepare('select ? as answer'); $sth->bind_param(1,42,SQL_INTEGER); $sth->execute(); $sth->dump_results();
42 1 rows
Alexander
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: fetchall_arrayref hangs with placeholders query with no results
by mpeppler (Vicar) on Apr 29, 2021 at 07:40 UTC | |
by afoken (Chancellor) on Apr 29, 2021 at 10:39 UTC | |
by mpeppler (Vicar) on Apr 29, 2021 at 12:12 UTC |