Hello from Berlin!

I am wrote this prepared statement...

$anwh = $dbh->prepare(qq{insert into kontencheckresult (konto_idt_kt, soll,
ist) values (?,?,?)});

$anwh -> execute($konto_idt_kt, $soll, $ist);

$konto_idt_kt, $soll, $ist are komma-seperated numbers (like 334834,34).
This doesnt work, no data in my Oracle8 Database. It only works wenn i
call...

$anwh -> execute($konto_idt_kt * 1, $soll * 1, $ist * 1);

....but then I lose everything behind the komma. Same problem with
dot-seperated numbers.

Thank you for your kind help.

Thomas Delnoij
ODS Gesellschaft für Datenbank Systeme m.b.H.


Reply via email to