in reply to Re: DBI Question
in thread DBI Question

Yes. Now how do i do it with a place holder and scalar variable.
$sth = $dbh->prepare( "SELECT name FROM people WHERE name like ?" ); $sth->execute( $name );
how do include a wildcard in the where the placeholder is without appending it to the variable.