my $guard = $self->txn_scope_guard;
- my $subrs_cur = $rs->cursor;
+ # emulate the return value of $sth->execute for non-selects
my $row_cnt = '0E0';
+
+ my $subrs_cur = $rs->cursor;
while (my @pks = $subrs_cur->next) {
my $cond;
}
# MySql can not do subquery update/deletes, only way is slow per-row operations.
-# This assumes you have proper privilege separation and use innodb.
+# This assumes you have set proper transaction isolation and use innodb.
sub subq_update_delete {
return shift->_per_row_update_delete (@_);
}