When writing to a database, what SQL keyword do I use after opening the recordset.
I tried to do the following and it's not working, can anyone help?
Private Sub cmdSave_Click()
Dim rst As New ADODB.Recordset
rst.Open "INSERT INTO * PersonInfo", cnn
rst.AddNew...