I have a VB6 application that connects an Access 2000 database using Microsoft Jet.OLEDB.4.0. I have added a password to the database, however whenever I try and connect to the database I receive the following error message:
workgroup file is missing or exclusively locked by another user.
my connection string is as follows:
cn.ConnectionString = "Provider=Microsoft.jet.OLEDB.4.0; Data Source=" & App.Path & "/appointments.mdb; User Id=admin; password=mypassword"
Is there anyway that I can have a simple password protected database, without having to bother about workgroup files? I am sure I have done this before! The reason I do not want to use a workgroup file is that I wish to create my own security.
many thanks.
workgroup file is missing or exclusively locked by another user.
my connection string is as follows:
cn.ConnectionString = "Provider=Microsoft.jet.OLEDB.4.0; Data Source=" & App.Path & "/appointments.mdb; User Id=admin; password=mypassword"
Is there anyway that I can have a simple password protected database, without having to bother about workgroup files? I am sure I have done this before! The reason I do not want to use a workgroup file is that I wish to create my own security.
many thanks.