|
-
Feb 6th, 2000, 03:44 AM
#1
I am just trying out the batchupdate method on a recordset and I am getting an error: "Insufficent base table information for updating or refreshing", when I issue the .updatebach method.
This is my code:
strSql = "SELECT TABLE.* From TABLE WHERE TABLE_REPORT)=True));"
With rstBatchUpdate
.ActiveConnection = mstrConnection
.LockType = adLockBatchOptimistic
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.Open strSql, Options:=adCmdText
.MoveFirst
Do Until .EOF
.Fields("EFSPROD_REPORT") = false
.MoveNext
Loop
.UpdateBatch
.Close
End With
What am I missing here, any clues?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|