Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_database_setup thread: Re: Could not find installable ISAM


Message #1 by "Ken Schaefer" <ken@a...> on Mon, 3 Dec 2001 17:08:56 +1100
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

From: <Cdeen1@h...>

Subject: [asp_database_setup] Could not find installable ISAM





: Has anyine seen this error before? If so what the resolution?

: 

: Microsoft JET Database Engine error '80004005' 

: Could not find installable ISAM. 

: /movie/connect.asp, line 25 



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



Your connection string is invalid:



:   objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _

:                "Data Source=DRIVER={Microsoft Access Driver (*.mdb)}; 



is not valid. Data Source= must point to a physical path:



objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _

    "Data Source=c:\databases\db1.mdb;"



for example, is valid.



Cheers

Ken






  Return to Index