PSUIVERSON
Technical User
I have a program that pulls information from tables in MS ACCESS.
The database I want to reference is on the DESKTOP of each users local machine.
Here is the code:
' Build connection string
connectString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Right here I would put the database path but it will not work for a desktop reference"
adoConnection.Open connectString
It works if I copy the database to the root directory of my C: and reference it like this:
' Build connection string
connectString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/sqlSOM.mdb"
adoConnection.Open connectString
How do I do SOURCE = to point at a desktop database?
Thanks in advance...
The database I want to reference is on the DESKTOP of each users local machine.
Here is the code:
' Build connection string
connectString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Right here I would put the database path but it will not work for a desktop reference"
adoConnection.Open connectString
It works if I copy the database to the root directory of my C: and reference it like this:
' Build connection string
connectString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/sqlSOM.mdb"
adoConnection.Open connectString
How do I do SOURCE = to point at a desktop database?
Thanks in advance...