Article ID: 119733
Article Last Modified on 1/8/2003
Sub Command1_Click()
Dim db As database
Dim ds As dynaset
Set db = OpenDatabase("biblio.mdb")
Set ds = db.CreateDynaset("select * from authors")
ds.Filter = "au_id > 1"
Set ds = ds.CreateDynaset()
BeginTrans
ds.Edit
'ds.update ' This is the irst workaround.
Rollback
'ds.addnew ' This is the second workaround.
ds.Edit ' The error occurs here.
End Sub
Additional query words: buglist3.00 3.00
Keywords: kbbug KB119733