in reply to DBD::ODBC and binding to a money column
It has been a couple years since I used DBD::ODBC but remember that it can be picky, like connect strings being case sensitive. Sounds like your database doesn't like the way Perl is free and easy with strings and numbers. Have you tried something like:
$sth->execute(7.00);
|
---|