in reply to PerlScript, ADODB, SQL Server updates not working
I'm wondering if using a cursor that is defined as read only and scrollable, and then trying to update it, could be causing you problems.$rs->Open($cmd,undef,adOpenStatic,adLockPessimistic); if ($rs->{EOF}) { # .... } else { #... $rs->Update; #... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PerlScript, ADODB, SQL Server updates not working
by pfaut (Priest) on Nov 17, 2004 at 22:45 UTC |