Greetings
I have a script that establishes a connection to an SQL database and creates severa
recordset objects via Select statements. I only want to extract data -- no updatin
needed. But I'm experiencing the following error condition
Transaction deadlocked on lock resources with another process and has been chose
as the deadlock victim. (Code: 80004005
I tried the following syntax on my recordset Opens
objRec.Open strSQL, objConn, adOpenForwardOnly, adLockReadOnl
But this gave me a syntax error
Arguments of the wrong type, out of acceptable range, or in conflict with one another
Then I tried eliminating the ad* parameters entirely, which according to a VB manua
should default to a forward-only, read-only recordset. But I still get the "deadlock
condition
Can anyone offer any help on this? Would appreciate greatly
Thanks
To