Help for this page
$sth->execute($id); my $row = $sth->fetch(); ... # No more images ... }
my $row = selectrow_arrayref($stmt_or_sth, undef, $id); if ($row) { ... # No more images ... }