Access as the front end and sql server as the backend

后端 未结 3 1510
梦谈多话
梦谈多话 2021-02-09 07:59

I have some Access tables with many number of fields. I have migrated each access table to 6 or 7 sql server tables. I am using sql server 2008. Now I want to use Access as the

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-09 08:46

    Well you can create an ODBC connection. You can also create an ADODB connection as well. If your objective is to update or modify a SQL database, both connections will do the trick.

    Now, I guess you have to get familiar with the corresponding objects. These should be tables, queries, commands, etc .., that will allow you, for example, to build recordsets out of SQL queries ... Once you are clear with that, you can, for example, assign a recordset to a form through the Set myForm.recordset = myRecordset.open ... method.

提交回复
热议问题