3.2 How do I connect a RecordSet to a table?

A RecordSet is useless unless it is associated with a table or a query in a database. Assuming that you want a RecordSet to be associated with a table in the Access document’s own database, you can do the following:

Set myRecordSet = CurrentDb.OpenRecordSet("Contacts", dbOpenDynaset)  
    

Several things need to be explains in this statement.