1 2 3 4 5 6 7
my $dbh = DBI->connect($dbc,$user,$password) or print "ERROR"; if (undef $dbh) { print "Konnte nicht DB verbinden: $DBI::errstr\n"; return; } my $sth = $dbh->prepare("TRUNCATE TABLE `kunden`"); $sth->execute();
2011-06-29T11:02:34 LinuxerHi, Du prüfst nicht, Du leerst $dhb.
1
2
3
4
5
6
7
my $dbh = DBI->connect($dbc,$user,$password);
unless (defined $dbh) {
print "Konnte nicht DB verbinden: " . $DBI->errstr() . "\n";
return;
}
my $sth = $dbh->prepare("TRUNCATE TABLE `kunden`") or die('fehlermeldung wg.prepare: ' . DBI->errstr());
$sth->execute();