I'm making a form for changing a user password and information
and tring to update the recoreds.
maybe the problam has nothing to do with what I'm thinking.. but that is what I tried:
when I try
rs.Open strSQL, oconn
or
rs.Open strSQL, oconn, 3
or
rs.Open strSQL, oconn, 2
or
rs.Open strSQL, oconn, 1
or
rs.Open strSQL, oconn, -1
I get this error:
Error Type:
ADODB.Recordset (0x800A0CB3)
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
/setup.asp, line 33
when I try
rs.Open strSQL, oconn, adOpenKeyset, adLockPessimist ic, adCmdText
or
rs.Open strSQL, oconn, 4
I get this error:
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/setup.asp, line 16
and tring to update the recoreds.
maybe the problam has nothing to do with what I'm thinking.. but that is what I tried:
when I try
rs.Open strSQL, oconn
or
rs.Open strSQL, oconn, 3
or
rs.Open strSQL, oconn, 2
or
rs.Open strSQL, oconn, 1
or
rs.Open strSQL, oconn, -1
I get this error:
Error Type:
ADODB.Recordset (0x800A0CB3)
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
/setup.asp, line 33
when I try
rs.Open strSQL, oconn, adOpenKeyset, adLockPessimist ic, adCmdText
or
rs.Open strSQL, oconn, 4
I get this error:
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/setup.asp, line 16
Comment