local connection

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the ADO syntax to connect to the local Jet tables in an app?

THX!!
 
Possibly you may be looking for CurrentProject.Connection. For example, to
open a recordset on a local table, assign CurrentProject.Connection to the
ActiveConnection property of the recordset ...

Dim rst As ADODB.Recordset
Set rst.ActiveConnection = CurrentProject.Connection
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top