Help for this page
<BR>$sth=$dbh->prepare(q{SELECT this FROM that WHERE <BR>foo=?}); <BR>$sth->execute($findthis); <BR>($returnme) = $sth->fetchrow_array();
<BR>$findthis = "find me"; <BR>my $query = "SELECT this FROM that WHERE foo='$findthis'"; ... I tried using sqlplus to throw queries directly at the db... and doing + just <CODE> SELECT this FROM that WHERE foo='find me';