bug fix when transfering fields with multiple values (e.g. checkboxes) to
[webpac] / index_DBI_cache.pm
index 3c43bc7..2c82097 100644 (file)
@@ -69,9 +69,9 @@ sub delete_and_create {
 #print "#### delete_and_create($field)\n";
 
        my $sql = "select count(*) from $field";
-       my $sth = $self->{dbh}->prepare($sql) || die $self->{dbh}->errstr();
+       my $sth = $self->{dbh}->prepare($sql);
 # FIX: this is not a good way to check if table exists!
-       if ($sth->execute() && $sth->fetchrow_hashref) {
+       if ($sth && $sth->execute() && $sth->fetchrow_hashref) {
                my $sql = "drop table $field";
                my $sth = $self->{dbh}->do($sql) || warn "SQL: $sql - ".$sth->errstr();
        }