Help for this page

Select Code to Download


  1. or download this
    <BR>$sth=$dbh->prepare(q{SELECT this FROM that WHERE <BR>foo=?});
    <BR>$sth->execute($findthis);
    <BR>($returnme) = $sth->fetchrow_array();
    
  2. or download this
    <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';