--- loncom/metadata_database/cleanup_database.pl 2006/08/10 20:07:01 1.5 +++ loncom/metadata_database/cleanup_database.pl 2006/11/20 17:07:57 1.7 @@ -2,7 +2,7 @@ # The LearningOnline Network # cleanup_database.pl Remove stale temporary search results. # -# $Id: cleanup_database.pl,v 1.5 2006/08/10 20:07:01 albertel Exp $ +# $Id: cleanup_database.pl,v 1.7 2006/11/20 17:07:57 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -119,7 +119,7 @@ unless ($dbh = DBI->connect("DBI:mysql:l my $sth = $dbh->prepare("SHOW TABLE STATUS"); $sth->execute(); -my $results = $sth->fetchall_hashref(['Name']); +my $results = $sth->fetchall_hashref('Name'); foreach my $name (keys(%$results)) { next if ($results->{$name}{Comment} ne 'temporary'); @@ -132,6 +132,7 @@ foreach my $name (keys(%$results)) { $dbh->do('DROP TABLE '.$name); } } +$sth->finish(); # --------------------------------------------------- Close database connection $dbh->disconnect;