Link to home
Start Free TrialLog in
Avatar of mcrmg
mcrmg

asked on

DB Connection Problem

Hi,

I have an web application using ASP and Access.  

This is my DB connection string:
      filePath = Server.MapPath("database/demo.mdb")
      Set oConn = Server.CreateObject("ADODB.Connection")
      oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & filePath

and this is the string that I close the connection when user log out:
oConn.close

My question is, why .ldb alway presents?  Thanks.
Avatar of alorentz
alorentz
Flag of United States of America image

Either your opening the connection more than once, and not closing ALL connections, OR your never getting to the oConn.  The .ldb definitely disappears if done correctly.
Hi mcrmg,
Because the DB is opened by your ADO...

Mattis
Avatar of sybe
sybe

because you have the database opened as an application? The .lbd is there is something has opened it, that includes a desktop application. Maybe your collegue has it opened and went home?
Avatar of mcrmg

ASKER

It is strange, that on my lcoal IIS, I never seen the ldb file, only when I oprn db in access.  But when I move this to server, ldb files created when I logged on..
Have you checked to see your security status for the access file?
Enable IUSR<computername> to have full control over the access files
See if it helps!
Avatar of mcrmg

ASKER

Hi,

I set permission for certain user, before user get in to the application, they will have to enter username and password that I set up on server.
ASKER CERTIFIED SOLUTION
Avatar of QLJ
QLJ
Flag of Afghanistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mcrmg

ASKER

I will post back....thanks