in reply to programmatic database querying
For instance, if you had the SQL statement SELECT * FROM person WHERE first_name = ? AND last_name = ?;, then you would call $sth->execute('John', 'Doe'); to look for John Doe or $sth->execute('Bob', 'Smith'); for Bob Smith.
|
|---|