" [Microsoft][OBDC SQL Server Driver][SQL Server] the normal parameter "@Status"
was not declared as an an OUTPUT parameter,but the actual parameter passed
in requested output "
was not declared as an an OUTPUT parameter,but the actual parameter passed
in requested output "
This error will get you in trouble????????????????? at my own experience this error comes
out when i call a stored procedure on my SQL Server database and after compiling it this
error will appear saying those message,i double check my code then traced where this error
came out,so my situation is i declare a parameter on my stored procedure where does not
out when i call a stored procedure on my SQL Server database and after compiling it this
error will appear saying those message,i double check my code then traced where this error
came out,so my situation is i declare a parameter on my stored procedure where does not
declare its output parameter,the problem goes here,
i declare a parameter @Status on my stored procedure but the sad thing is i forgot the value
of this where supposedly look like this,
of this where supposedly look like this,
MyCmd.Parameters.Append MyCmd.Create Parameter("SPLAppPos", adVarChar,
adParamInput, 50,"Active")
so its better to declare all the parameters and declare their corresponding value to avoid
this kind of typo error
this kind of typo error
Happy Coding ^_^
The Hardest Thing to Do is to Do Nothing ^_^
Leave a comment