Connection String

AccessDev

New member
Local time
Today, 18:42
Joined
Jul 27, 2006
Messages
8
Can smeone please give a complete connection string using DAO. I then need to open a connection in turn a recordset and perform a dlookup.

many thanks for any help
 
You don't need a connection string for DAO.

Code:
Dim dbstemp As DAO.Database
Dim rsttemp As DAO.Recordset
Set dbstemp = CurrentDb
Set rsttemp = dbstemp.OpenRecordset("authortemp", dbOpenDynaset)
 
Many thakns for your reply
 

Users who are viewing this thread

Back
Top Bottom