Medic
12-27-2000, 06:37 PM
Has anybody ever heard of the error message "insufficient base table information for update or refresh". I get this when trying to call a recordset.update command. the code looks like this:
strSQL = "SELECT tblSubmitterID.Notes From tblSubmitterID WHERE (((tblSubmitterID.Index)=" & IntIndex & "));"
rsDetail.Open strSQL, DBConnection, adOpenKeyset, adLockOptimistic
rsDetail![Notes] = TxtNote.Text
rsDetail.Update <========= error!
rsDetail.Close
Set rsDetail = Nothing
any help would be appreciated. i also get this same error when trying to use an Addnew with an update.
strSQL = "SELECT tblSubmitterID.Notes From tblSubmitterID WHERE (((tblSubmitterID.Index)=" & IntIndex & "));"
rsDetail.Open strSQL, DBConnection, adOpenKeyset, adLockOptimistic
rsDetail![Notes] = TxtNote.Text
rsDetail.Update <========= error!
rsDetail.Close
Set rsDetail = Nothing
any help would be appreciated. i also get this same error when trying to use an Addnew with an update.