Subject: | bulksqlupdatearrayarray does not preserve contents of bind when passed as reference |
DBD::Oracle
my @list=$sdb->sqlarrayarray($select);
next unless @list;
my $count=$sdb->bulksqlupdatearrayarray($update, \@list);
printf "Schema %s: Found: %s, Updated: %s\n", $schematxt, scalar(@list), $count;
I expect scalar(@list) to be preserved after call to bulksqlupdatearrayarray.
Mike