From: Thomas <ja...@ma...> - 2004-02-16 20:49:11
|
Hi. I am trying to get access to a embedded Firebird database using Firebird .NET provider 1.6. Using ASP.NET & IIS 5. But when I make this call: myConnection.Open(); I get this error: "no permission for read-write access to database c:\db\myDB.GDB" codesnip: .... private FbConnection myConnection; private string myConnectionString = ""; ...... myConnectionString ="Database=C:\db\myDB.GDB;User="*****";Password="*****";Dialect=1;Charset=NO NE;Server=localhost; Pooling=true; Connection Lifetime=60; ServerType=1;" ...... myConnection = new FbConnection(myConnectionString); ......... myConnection.Open(); (The c:\db folder is shared for web and access is given to the ASP.NET user) Any help? Regards Thomas |