~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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