D
Dave Lagergren
Well, I'm getting this project done by writing my own routines instead of
trying to kludge FR03 DBWs.
Now I have another problem.
I get the error: Microsoft JET Database Engine error '80040e07'
Data type mismatch in criteria expression.
/logon/Repair/editor/edit1.asp, line 19
Line 19 of edit1.asp reads:
objRS.Open "Select * from Results WHERE Key ='33'", objConn, 0, 1
NOTE- I need to assign a variable to the '33'. It is read here:
SearchText = CStr(Request("Key"))
Response.Write(SearchText)
I have an include file to open the database:
<%
DIM objRS, objConn
Set objRS = Server.CreateObject("ADODB.Recordset")
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
Server.MapPath ("/logon/fpdb/Repairlog.mdb") & ";"
objConn.Open
%>
All of you have been a fantastic help!!
Dave
trying to kludge FR03 DBWs.
Now I have another problem.
I get the error: Microsoft JET Database Engine error '80040e07'
Data type mismatch in criteria expression.
/logon/Repair/editor/edit1.asp, line 19
Line 19 of edit1.asp reads:
objRS.Open "Select * from Results WHERE Key ='33'", objConn, 0, 1
NOTE- I need to assign a variable to the '33'. It is read here:
SearchText = CStr(Request("Key"))
Response.Write(SearchText)
I have an include file to open the database:
<%
DIM objRS, objConn
Set objRS = Server.CreateObject("ADODB.Recordset")
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
Server.MapPath ("/logon/fpdb/Repairlog.mdb") & ";"
objConn.Open
%>
All of you have been a fantastic help!!
Dave