
August 8th, 2006, 12:23 AM
|
|
Contributing User
|
|
Join Date: Jun 2003
Posts: 62
  
Time spent in forums: 13 h 3 m 18 sec
Reputation Power: 7
|
|
Quote: | Originally Posted by chille_dawg Hey guys,
I have a program running on .NET framework with a firebird database usually I have to install this program on 2 different computers or more and access the database off one specific computer. However I have run into a problem which I havent been able to resolve lately and that is one of the computers just refuses to access the database.
I have turned off my firewalls I have allowed the correct user permissions, I have created a mapped drive to access the database and I can modify the database file from the other computer but when it comes to actually loading the db from my program it refuses to load.
So does anyone know of any other reasons why I cannot load the db? if so please help me out as I have no idea what could be wrong.
Thanks alot |
It is so by design. You cannot open db in a shared folder from network.
If you want multiuser access, specify "server:{db_path_on_server}\database" in connection string.
Or "server:{alias}"
|