#!/usr/bin/env perl use strict; use warnings; use DBD::mysql; (...) my $updateStatement = "UPDATE `_buch` SET `autor` = ?, `titel` = ?, `verlag` = ?, `jahr` = ?, `ort` = ?, `auflage` = ?, `sprache` = ?, `einband` = ?, `seiten` = ?, `format` = ?, `stichwort` = ?, `sparteName` = ?, `lfdnr` = ?, `infotext` = ?, `preis_euro` = ?, `gewicht` = ? WHERE `isbn` = ? LIMIT 1"; (...) my $db = DBI->connect("DBI:mysql:database=;host=localhost;port=3306", "", ""); my $update = $db->prepare($updateStatement) or die ($DBI::errstr);