I'm trying to implement and test this Performance tip for MS Access 2007 database with ODBC linked tables.
Basically it creates a persistent connection to the linked database. The example uses another Access file (.mdb).
In my case, I'm using linked tables from SQL Server with a file dsn. While I'd like to use a User/System DSN I need to work with the file DSN for now. I'm having trouble getting a connection based through the file DSN and the openDatabase method.
Question: If I just open one of the tables via recordset and keep that open will the same benefits be seen?
Code in Example:
Static dbsOpen As DAO.Database
Set dbsOpen(x) = OpenDatabase("H:\folder\Backend1.mdb")
Recordset based on CurrentDB:
Static rs As DAO.Recordset
Set rs = CurrentDb.OpenRecordset("tablename")