Hi Mara,
There's a variety of ways to do both, of course. To insert new records using ADO, you can do something like this:
Dim rst as ADODB.Recordset
Set rst = New ADODB.Recordset 'Instantiate a new recordset
With rst
.Open "myTable", CurrentProject.Connection, adOpenDynamic 'Open...