I have 2 servers. Windows NT. Here are several access databases located. And a windows2000 server.
Now I want to connect from the Windows2000 server tot the Windows NT server using PHP.
I'm using following code to make a connection.
$BASE = "test";
$LOGIN = "test";
$MPASSE = "test";
$conn = odbc_connect($BASE,$LOGIN,$MPASSE);
I have already made a new DNS with the name test.
But I always receive the following error :
Warning: SQL error: [Microsoft][Pilote ODBC Microsoft Access] Le moteur de la base de données Microsoft Jet ne peut pas ouvrir le fichier '(Inconnu)'. Il est déjà ouvert en mode exclusif par un autre utilisateur, ou vous devez avoir l'autorisation de visualiser ses données., SQL state S1000 in SQLConnect ...
Something like. The database is already opened exclusivly by an another user. SQL State S1000.
Does anybody know what I can do about this ?