|
I try to update parameters of type int that can be null in DB but if the field is empty in asp I get an error when I send it to Stored Procedure if I remove this parameter its working fine
but the problem is when I send int with no value
please help I am stuck
Set param = cmd.CreateParameter("access_id", 3, 1,4, Request("access_id"))
cmd.Parameters.Append param
|
|
|
|
|
|
|
|
|
|