Why does the following ADO code running off a SQL 7 DB:
With rsReadTableInfo
.Open
.Find "TableName='Variables'"
.Resync adAffectCurrent
.MoveFirst
.Find "TableName='Salutations'"
.Resync adAffectCurrent
End With
generate this error message:
"Consumers event handler called a non-reentrant method in the provider"
The recordset is being opened as a server side, keyset with optimistic
locking.
Thanks, Rob.
With rsReadTableInfo
.Open
.Find "TableName='Variables'"
.Resync adAffectCurrent
.MoveFirst
.Find "TableName='Salutations'"
.Resync adAffectCurrent
End With
generate this error message:
"Consumers event handler called a non-reentrant method in the provider"
The recordset is being opened as a server side, keyset with optimistic
locking.
Thanks, Rob.