I have a stored procedure and my VB6 apps need to pass the parameter to it.
I need to pass Null value to a text(in T-sql), if I use:
orCode:Set prm5 = cmd.CreateParameter("@xmlStation", adLongVarChar, adParamInput, 0, null)
I get:Code:Set prm5 = cmd.CreateParameter("@xmlStation", adLongVarChar, adParamInput, , null)
Anyone knows?Code:Parameter object is improperly defined. Inconsistent or incomplete information was provided.




Reply With Quote