Hi All,
I've got this line in a call to an oracle stored procedure that I just can't seem to fix.
It used to be ok until I changed the values being sent to it. it used to be no higher than 59999, now it's over 70000. I know that this is the problem, however, here is the error:
I've tried chnaging the adInteger to an adBigInt, which makes perfect sense.
This is the result...
Not sure if this is progress or not.....
So, I basically need to find something that can handle numbers around 70000 range.
Thanks,
Todd
I've got this line in a call to an oracle stored procedure that I just can't seem to fix.
Code:
set param = comm.CreateParameter("TakeID", adInteger, adParamInput, , TakeID)
It used to be ok until I changed the values being sent to it. it used to be no higher than 59999, now it's over 70000. I know that this is the problem, however, here is the error:
Code:
Error Type:
Provider (0x8002000A)
Out of present range.
/mbtapacis/include/message.asp, line 199
Code:
set param = comm.CreateParameter("TakeID", adBigInt, adParamInput, , TakeID)
Code:
Error Type:
ADODB.Parameters (0x800A0E7C)
Parameter object is improperly defined. Inconsistent or incomplete information was provided.
/mbtapacis/include/message.asp, line 200
So, I basically need to find something that can handle numbers around 70000 range.
Thanks,
Todd