Hey Gang,
I inherited the following code:
Set rst = New ADODB.Recordset
Set rst.ActiveConnection = CurrentProject.Connection
rst.CursorType = adOpenKeyset
rst.LockType = adLockOptimistic
rst.Source = “tblClosed”
rst.Open options:=adCmdTable
Set rstSource = New ADODB.Recordset
Set rstSource.ActiveConnection = CurrentProject.Connection
rstSource.CursorType = adOpenKeyset
rstSource.LockType = adLockOptimistic
rstSource.Source = “tblCaseFile”
rstSource.Open options:=adCmdTable
I am not sure what the options:=acCmdTable means. Can you explain? TIA.