I need to connect to a secured Access 2000 mdb from another program front end

E

Edwin Hannan

Hi All

I am new to the Access Newsgroup so hope you all dont mind me posting an
access related question:)

I use the following dsnLess connection string to connect to a access 2000
mdb
that is not secured. (I use Clarion as a Front End)..this connects me to the
mdb no problem.

I have a varaible AccessDBsource in the owner field of the table in my Table
Definition

AccessDBsource = 'DRIVER={{Microsoft Access Driver (*.mdb)}' |
& ';DBQ=YourMdbFile' |
& ';UID=admin' |
& ';PWD=YourPasswordIfAny' |
& ';ImplicitCommitSync=Yes' |
& ';UserCommitSync=Yes' |
& ';ExtendedAnsiSql=1' |
& ';Threads=4' |
& ';PageTimeout=5' |
& ';MaxScanRows=8' |
& ';MaxBufferSize=2048' |
& ';FIL=MS Access'

I know the name and location of the Secured.mdw that holds the workgroup
info (users and passwords etc...) and I know all the passwords etc...

The actual mdb does not have a password, so access must be via authorised
uid and pw as per the Secured.mdw

What do I add to the connection string to get me in?

cheers

Ed
 

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

Top