Subject: | Problem binding OID |
I recently upgraded to the latest version of the DBD::Sqlite module (1.07).
Previously I was using .31.
I noticed a descrepency with binding parameters to a prepare statement.
For example:
my $number=3;
$dbh->prepare ('select * from category where OID=?';);
$dbh->execute ($number);
In verion .31 this worked and I got what I queried for. However in 1.07 it
didn't work. I had to change my sql query to :
$dbh->prepare ('select * from category where OID like ?';);