以下のようなSQLクエリがあります
select id from table where name like 'somename';
現在、db にはこのレコードが 1 つしかありません。バインドすると、SQLクエリは次のようになります
my $sth = $dbh->prepare("select id from table where name=?");
$sth->execute('somename');
.... # fetch single row from array
それで、どちらが良いですか?バインドありまたは単一行なし?