in reply to Re: How do I use bind variable w/oracle DBD?
in thread How do I use bind variable w/oracle DBD?
$sth_detections = $dbh->prepare("$QUERY2") || die $DBI::errstr; for ... my $city = $city[$i]; my $station = $station[$i]; $sth_detections->bind_param(":city", $city); $sth_detections->bind_param(":station", $station); $sth_detections->execute; @row = $sth_detections->fetchrow;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How do I use bind variable w/oracle DBD?
by ke6scs (Initiate) on Dec 04, 2002 at 01:35 UTC |