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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access and ASP

Status
Not open for further replies.

davout69

Programmer
Oct 26, 2001
11
US
Anyone have an example of connecting to a non-DSN Access DB that is password protected, through ASP pages? Here is what I have but I get an error, "Could not find installable ISAM".

<%
Dim cConnectStr
Set DBConn = Server.CreateObject (&quot;ADODB.Connection&quot;)
DBConn.Provider = &quot;Microsoft.Jet.OLEDB.4.0&quot;
cConnectStr=&quot;Data Source=logon.mdb;psword=admin&quot;

DBConn.Open cConnectStr
.
.
.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top