groovygarden
Programmer
- Aug 23, 2001
- 63
Hi, I hope someone can help cos this might be the problem that finally sends me mad...
I've created an HTML form which gets a name from the user. This is then passed to an ASP form which is meant to display results from my database where the name field matches the one entered by the user.
However, I get the following error message:
Code:
[ADODB.Connection error '800a0e7a'
ADO could not find the specified provider.
/test/resultsfp.asp, line 29
The offending Line 29 is:
Code:
myConnection.Open connectString
in context:
Code:
dim myConnection
dim rsPuterList
dim connectString
dim sqlString
dim requestType
connectString = "Provider=Microsoft.Jet.OLEDB.4.00;Data Source=trial.mdb;"
Set myConnection = Server.CreateObject("ADODB.Connection")
Set rsPuterList = Server.CreateObject("ADODB.Recordset")
myConnection.Open connectString
Any suggestions would be more than gratefully received! )
Thanks in advance