Well, you can create an ODBC connection. You can also create an ADODB connection. If your goal is to update or modify the SQL database, both connections will do the trick.
Now, I think you need to familiarize yourself with the relevant objects. These should be tables, queries, commands, etc., which will allow you, for example, to create recordsets from SQL queries ... As soon as you deal with this, you can, for example, assign a recordset to a form via the Set myForm.recordset = myRecordset.open ... method Set myForm.recordset = myRecordset.open ...
Philippe grondier
source share