S
Scott M.
Dim con As New OleDb.OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0;Data
Source=<database path here>")
Dim cmd As New OleDb.OleDbCommand("INSERT statement here", con)
Try
con.open
cmd.ExecuteNonQuery
Catch ex As OleDbException
'error handling here
Finally
con.close
End Try
Source=<database path here>")
Dim cmd As New OleDb.OleDbCommand("INSERT statement here", con)
Try
con.open
cmd.ExecuteNonQuery
Catch ex As OleDbException
'error handling here
Finally
con.close
End Try