G
Guest
Help
I have a command that executes a stored procedure. The same command is executed thousands of times. Prior to each execution of the command, the parameters need to be reinitialized to null and then repopulated with new values. I've tried the following command
cmSql.parameters(3).value = vbNul
All that does is produce an error saying that it can't convert an enum type to a date
Not reinitializing the parameters after each execution is not an option. Surely there must be a time effective way to do this
Thanks in advance for your help
I have a command that executes a stored procedure. The same command is executed thousands of times. Prior to each execution of the command, the parameters need to be reinitialized to null and then repopulated with new values. I've tried the following command
cmSql.parameters(3).value = vbNul
All that does is produce an error saying that it can't convert an enum type to a date
Not reinitializing the parameters after each execution is not an option. Surely there must be a time effective way to do this
Thanks in advance for your help