I'm pretty sure that i can't figure this out because i've been staring at it for too long...
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/dcsp/dccs/design/dbTest_update.asp, line 12
<% OPTION EXPLICIT%>
<%
dim adoCon, SQL_query, RSpeople, dbFilePath, recordNum
recordNum = CLng(Request.QueryString("ID_num"))
dbFilePath = Server.MapPath("../_dbs/dbTest97.mdb")
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & dbFilePath & ";"
Set RSpeople = Server.CreateObject("ADODB.Recordset")
SQL_query = "SELECT People.* FROM People WHERE ID_num=" & recordNum
RSpeople.Open adoCon, SQL_query
%>
Edited by KCWebMonkey