I have a stored procedure which among all the data get a date range from a website form. This stored procedure is calling a vbs I created which is supposed to unzip some files where their naming is based on the date they were created.
The question I have is how can I pass the date range to variables in the vbs to do its job?
I.e.: date range is 25 to 27 Jan 2016
, the sql need to pass to the vbs 25012015
and 27012016
.
After a bit of research I saw you can pass data from vbs to the stored procedure so i am looking for doing the other way around.
I did not post any code as I m looking for something generic as both my script are working fine apart for passing the data from stored procedure to VBS.