Statement Handles
Statement Handles encapsulate a statement to
be issued to the database
Statement handles are created via a database
handle. That is, a statement is issued to the
database represented by the database handle
$sth = $dbh->prepare( “SELECT yadda FROM blah” );
Statement handles also allow you to fetch data
from the issued statement from the database
DBI: The Neophyte's Guide
21