Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Current recordset does not support updating...

Status
Not open for further replies.

gorack

Programmer
Mar 27, 2003
10
CA
current recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.

My code is in VBSCRIPT

i create a connection
then

Set rs = CreateObject("ADODB.Recordset")
rs.Open "table", SourceConn, adOpenDynamic
rs.addnew

the addnew bring me the error above (3251)
 

add this to the open parameter
",adlockoptimistic"
i thing you forget this string
ie.
Set rs = CreateObject("ADODB.Recordset")
rs.Open "table", SourceConn, adOpenDynamic",adlockoptimistic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top