From a553c8e8bd8e5dfc4dca349053b79dabd2165dba Mon Sep 17 00:00:00 2001 From: slef Date: Thu, 8 Jan 2004 16:31:54 +0000 Subject: [PATCH] DBI call fix for bug 662. No syntax check: missing module? --- z3950/z3950import.pl | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/z3950/z3950import.pl b/z3950/z3950import.pl index 1db1573fd2..5ec6036aba 100644 --- a/z3950/z3950import.pl +++ b/z3950/z3950import.pl @@ -162,12 +162,12 @@ sub ProcessRecord { if ($file=~/Z-(\d+)/) { my $id=$1; my $resultsid=$input->param('resultsid'); - my $sth=$dbh->prepare("select results from z3950results where id=$resultsid"); - $sth->execute; + my $sth=$dbh->prepare("select results from z3950results where id=?"); + $sth->execute($resultsid); ($data) = $sth->fetchrow; } else { - my $sth=$dbh->prepare("select marc from uploadedmarc where id=$file"); - $sth->execute; + my $sth=$dbh->prepare("select marc from uploadedmarc where id=?"); + $sth->execute($file); ($data) = $sth->fetchrow; } @@ -253,8 +253,8 @@ sub ListFileRecords { # if z3950 results if (not $file=~/Z-(\d+)/) { # This is a Marc upload - $sth=$dbh->prepare("select marc,name from uploadedmarc where id=$file"); - $sth->execute; + $sth=$dbh->prepare("select marc,name from uploadedmarc where id=?"); + $sth->execute($file); ($data, $name) = $sth->fetchrow; $template->param(IS_MARC => 1); $template->param(recordsource => $name); @@ -997,6 +997,9 @@ sub FormatMarcText { #--------------- # $Log$ +# Revision 1.4.2.1 2004/01/08 16:31:54 slef +# DBI call fix for bug 662. No syntax check: missing module? +# # Revision 1.4 2003/07/15 00:02:49 slef # Work on bug 515... can we do a single-side rename of notes to bnotes? # -- 2.39.5