Thread MySQL + Transaktion -> funktioniert nicht
(30 answers)
Opened by SirLant at 2003-08-25 16:00
[quote=SirLant,26.08.2003, 00:02]Hm, versuche ich mal.
Edit: habe es so: Code (perl): (dl
)
1 2 3 4 my $sth = $dbh->prepare ("SELECT doku_id FROM doku_posten WHERE `bestell_id` = ? AND " . "`doku_id` = ? AND `passwort` = ?"); $sth->execute ($bestell_id, $doku_id, $pwd); my $doku_result = $sth->selectrow_array (); Der interpreter bringt: Can't locate object method "execute" via package "DBI::db" at E:/WWW/cgi-bin/pseudecom/dokument.cgi line 29. wo liegt da das Problem?[/quote] 1. $sth->execute() 2. Fehlerbehandlung 3. Doku zum DBI-Modul |