##
$findthis = "find me";
my $query = "SELECT this FROM that WHERE foo='$findthis'";
$sth=$dbh->prepare{$query);
...
doesn't work. it prints SELECT this FROM that WHERE foo='find me'
I tried using sqlplus to throw queries directly at the db... and doing just
SELECT this FROM that WHERE foo='find me';