ComputerCop911
Programmer
I am running a script connecting to an Access 2000 DB, and
its never done this before, but when I run a page it says
Microsoft JET Database Engine error '80004005'
Could not use ''; file already in use.
my connection string looks like this:
Dim ConnectString, conn
ConnectString = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("\elogin\db\users.mdb"
& ";" & _
"Persist Security Info=False"
Set conn = Server.CreateObject("ADODB.Connection"
conn.open ConnectString
I was wondering how I can check which connections are still open, using either a .vbs or .asp file, and if there are any open, then close them.
ComputerCop911
ASP/HTML Programmer
its never done this before, but when I run a page it says
Microsoft JET Database Engine error '80004005'
Could not use ''; file already in use.
my connection string looks like this:
Dim ConnectString, conn
ConnectString = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("\elogin\db\users.mdb"
"Persist Security Info=False"
Set conn = Server.CreateObject("ADODB.Connection"
conn.open ConnectString
I was wondering how I can check which connections are still open, using either a .vbs or .asp file, and if there are any open, then close them.
ComputerCop911
ASP/HTML Programmer