Forum Moderators: open
I have built a site that runs off a number of access databases. The site is split into an admin site (for editing the db's) and the front end (what the use sees). The problem is, I keep coming across messages about the database being opened by another user. I, therefore, need to make the frontend connections read only. How do I do this?
My Sample Connection String
---------------------------
Dim DBcnn
Set DBcnn = Server.CreateObject("ADODB.Connection")
DBcnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("../../databases/manuals.mdb")
Set ManualSearchRS = Server.CreateObject("ADODB.Recordset")
Set ManualSearchRS.ActiveConnection = DBCnn
ManualSearchRS.Open "SELECT * FROM Manuals WHERE CategoryID = " & GetCats("CategoryID") & " ORDER BY ManualName"
Thanks
ASPhopeful