--- loncom/interface/lonmysql.pm 2005/04/11 15:33:46 1.30 +++ loncom/interface/lonmysql.pm 2005/07/11 13:49:47 1.32 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # MySQL utility functions # -# $Id: lonmysql.pm,v 1.30 2005/04/11 15:33:46 albertel Exp $ +# $Id: lonmysql.pm,v 1.32 2005/07/11 13:49:47 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -478,7 +478,6 @@ Be careful. ############################### sub get_dbh { return undef if (! defined(&connect_to_db())); - &Apache::lonnet::logthis("reconnect set to ".$dbh->{mysql_auto_reconnect}); return $dbh; } @@ -978,6 +977,7 @@ sub bulk_store_rows { $request .= '('.join(',',@$row).'),'; } $request =~ s/,$//; + # $debugstring = "Executed ".$/.$request; # commented out - this is big $dbh->do($request); if ($dbh->err) { $errorstring = 'Attempted '.$/.$request.$/.'Got error '.$dbh->errstr();