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
--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
|