Multi Programs Used Same DB

the_others

New member
Local time
Today, 13:19
Joined
Jul 2, 2010
Messages
1
Hello All

I have Already Acceess DB, and there is a project written in Vb wich use that DB, And i have to make another program which have to use the same DB
i Split the DB and the two programs connected to the DB, but when i try to use the second Program it said that the DB aready in use by the first program

That is my connection, i think the problem is that connection open the DB exclusively

Set db = DBEngine.Workspaces(0).OpenDatabase("BD Path", True, False, ";PWD=Password")


How can i solve that

THanks
progress.gif
 
Change the red part to false:

Set db = DBEngine.Workspaces(0).OpenDatabase("BD Path", True, False, ";PWD=Password")
 

Users who are viewing this thread

Back
Top Bottom