zduck
08-30-2002, 03:38 AM
When I try to run the following code it gives me this error.
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
...., line 41
HERE IS THE CODE (WITH LINE NUMBERS):
36: email = LCase(Request.QueryString("email"))
37: IF email > "" THEN
38: set rs = server.createobject("ADODB.recordset")
39: sql = "SELECT * FROM members WHERE email='" & email & "' AND active<>'true'"
40: Response.Write(sql) 'FOR ERROR CHECKING
41: rs.Open sql,conn
42: IF rs.EOF THEN
43: Response.Write("....")
44: ELSE
..................................................
.............................
...................
..........
....
Can anyone please help me with this.
-Joshua David
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
...., line 41
HERE IS THE CODE (WITH LINE NUMBERS):
36: email = LCase(Request.QueryString("email"))
37: IF email > "" THEN
38: set rs = server.createobject("ADODB.recordset")
39: sql = "SELECT * FROM members WHERE email='" & email & "' AND active<>'true'"
40: Response.Write(sql) 'FOR ERROR CHECKING
41: rs.Open sql,conn
42: IF rs.EOF THEN
43: Response.Write("....")
44: ELSE
..................................................
.............................
...................
..........
....
Can anyone please help me with this.
-Joshua David