Can someone tell me what the problem is with this connection string:
<%
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("Project.mdb")
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.open "Tasks",adoCon,,adLockOptimistic,adCmdTable
%>
The table i am trying to update is called tasks in the project db. I keep getting the following error:
"ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another."
Any help would be appreciated. Thanks!
<%
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("Project.mdb")
Set rs=Server.CreateObject("ADODB.RecordSet")
rs.open "Tasks",adoCon,,adLockOptimistic,adCmdTable
%>
The table i am trying to update is called tasks in the project db. I keep getting the following error:
"ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another."
Any help would be appreciated. Thanks!