I have a front-end database that links tables from a couple of back-end databases (all MSACCESS/DAO). As part of a schema upgrade I executed the following:
Intending to follow up by creating a link to the table from the front-end to the backend.
This executed successfully, but the table was created in
Is this expected? What am I missing?
Code:
Dim dbLog As Database
Set dbLog = ws.OpenDatabase(CurrentProject.path & "\" & "Log.accdb")
...
dbLog.execute "create table ...." ' A valid CREATE TABLE statement
Intending to follow up by creating a link to the table from the front-end to the backend.
This executed successfully, but the table was created in
CurrentDB (the front-end) not the specified backend. Is this expected? What am I missing?