in reply to Re: DBI Questionin thread DBI Question
$sth = $dbh->prepare( "SELECT name FROM people WHERE name like ?" ); $sth->execute( $name ); [download]