developer155
Programmer
Hello,
I have about 50-60 variables of the String type in my app (variables I then pass to stored procedure) and I need to create a routine to assign an empty string to all of those (after each time I call the stored procedure to make sure that old values are not beign passed)
What is the quickest way to do this, is there a way I can quickly put them all into array and then go through array?
It takes a lot of coding to do them one by one like
strVariable=""
strVariable2=""
strVariable3=""
Thanks for any suggestions!
I have about 50-60 variables of the String type in my app (variables I then pass to stored procedure) and I need to create a routine to assign an empty string to all of those (after each time I call the stored procedure to make sure that old values are not beign passed)
What is the quickest way to do this, is there a way I can quickly put them all into array and then go through array?
It takes a lot of coding to do them one by one like
strVariable=""
strVariable2=""
strVariable3=""
Thanks for any suggestions!