Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

'80004005' Could not find installable ISAM.

Status
Not open for further replies.

nk9100

Technical User
May 13, 2005
67
GB
I am getting this error from the include file below:

Any ideas?

Have searched the forum, but nothing was really applicable

Code:
Microsoft JET Database Engine error '80004005' 

Could not find installable ISAM. 

/register/pass/includes/connection.asp, line 8
Line 8 is marked with ******* (Also, all the connection code is on one line as it should be)
Code:
<%
DIM objConn
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="&Server.MapPath("richard/admin/db/users.mdb") & ";"
objConn.Open *******
%>

Life is a journey that always ends up in the place
 
oops...observed one more thing...

your connection string is wrong....

DataSource is two words and not one word....try this:

objConn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("richard/admin/db/users.mdb") & ";"


-DNG
 
Hi,

I have tried changing the line, which had no effect, and I downloaded MDAC, this also had no affect, but I am just wondering, (this may sound like a stupid question!) where do I install MDAC to?, is it within the Web server itself or to the HDD?

We have NTFS partition, with a Data D:, and a C: for program files etc, the Web site is hosted within the Data D, through IIS obviously.

I apologise if this sounds like a ridiculous Q to ask. I have installed MDAC on the C:, to no avail

Cheers

-Richard

Life is a journey that always ends up in the place
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top