in reply to PerlScript, ADODB, SQL Server updates not working

$rs->Open($cmd,undef,adOpenStatic,adLockPessimistic); if ($rs->{EOF}) { # .... } else { #... $rs->Update; #... }
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.
HTH
--
Olivier

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

    Those are the same parameters we use in the VBScript code to get an updateable recordset. That code works fine.

    90% of every Perl application is already written.
    dragonchild