Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/02/2006, 18:55
crucifijo
 
Fecha de Ingreso: septiembre-2003
Mensajes: 182
Antigüedad: 21 años, 8 meses
Puntos: 1
Error: ADODB.Recordset (0x800A0BB9)

Hola amigos fijense que he tenido unos problemas la generar mi objetos con ADO de hecho el error que me manda es el siguiente:

Tipo de error:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/members.asp, line 17


Tipo de explorador:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 2.0.50215)


Le dejo mi codigo ya que la verdad es mu sencillo:

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Members</title>

<%
Set cnn1 = Server.CreateObject("ADODB.Connection")
openStr = "driver={Microsoft Access Driver (*.mdb)};" & _
"dbq=" & Server.MapPath("coinclub.mdb")
cnn1.Open openStr,"",""

sql = "SELECT * FROM members;"
Set rsMbrs = Server.CreateObject("ADODB.Recordset")
rsMbrs.Open sql,cnn1, adOpenFowardOnly, adLockReadOnly, adCmdText
%>
</head>

<body>

</body>

</html>

Ojala me puedan ayudar