- or download this
$dbh->do($statement, \%attr, @bind_values);
- or download this
$dbh->do($statement, undef, @bind_values);
- or download this
my $counter = 'SELECT pagecounter FROM counters WHERE pagename = ?'
+,
undef, $pagename
);
- or download this
my $sth = $db->prepare('SELECT pagecounter FROM counters WHERE pagenam
+e = ?');
$sth->execute($pagename);
- or download this
my ($counter) = $db->selectrow_array(
'SELECT pagecounter FROM counters WHERE pagename = ?',
undef, $pagename);