Solution
The query is by nature read only
but... After much hunting here is the solution
Set rst = New ADODB.Recordset
rst.CursorLocation = adUseClient
rst.Open "SELECT * FROM EqptListQuery", CurrentProject.Connection, adOpenKeyset, adLockOptimistic
rst.ActiveConnection =...