This topic is locked
[SOLVED]

 Microsoft JET Database Engine error '80004005'

11/27/2005 8:42:55 PM
ASPRunnerPro General questions
B
bevguy2 author

I have recently downloaded asp runner but have run into a problem when trying to view my pages. The following error occurs:
Microsoft JET Database Engine error '80004005'
Could not find installable ISAM.
/inventory_edit.asp, line 52
line 52 for inventory_edit.asp is: dbConnection.Open.
What is this error and how do I correct it?

Admin 11/27/2005

What database do you use?
Post your connection string here. Connection string can be found in include/dbconnection.asp file.

B
bevguy2 author 11/28/2005

What database do you use?

Post your connection string here. Connection string can be found in include/dbconnection.asp file.


This is my connection string:
<%

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

"Data Source=c:\sites\?????\?????\database\Ace_database.mdb"

%>

Admin 11/28/2005

I won't recommend to use connection string that is not created by ASPRunnerPro.
Correct connection string would be:

strConnection = "DBQ=c:\sites\?????\?????\database\Ace_database.mdb;Driver={Microsoft Access Driver (*.mdb)};DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;"