Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: Jet Database error


Message #1 by "info" <info@p...> on Fri, 27 Apr 2001 14:14:25 -0400
Could anyone point me to an article on how to solve the following

error?



Error Type:

Microsoft JET Database Engine (0x80040E4D)

Cannot start your application. The workgroup information file is

missing or opened exclusively by another user.



Here is the code:



Dim objRS, strConnect



strConnect = 	"Provider=Microsoft.Jet.OLEDB.4.0;" &_

"Data Source=" & Server.MapPath("/store/infostore/database.mdb") &

";User Id=Admin;Password=password;"





Const adOpenForwardOnly = 0

Const adLockReadOnly = 1

Const adCmdTable = 2



Set objRS = Server.CreateObject("ADODB.Recordset")

objRS.Open "Table", strConnect, adOpenForwardOnly, adLockReadOnly,

adCmdTable




  Return to Index