How can I pass an Option Group parameter to execute a stored procedure? Basically I have 3 stored procedures and want the user to define which one of the three to execute by what option then select. I am looking for sample coding along the lines of:
if option 1 then
strSql = "exec pump "
if option 2 then
strSql = "exec dump "
if option 3 then
strSql = "exec marry "
Thanks.
if option 1 then
strSql = "exec pump "
if option 2 then
strSql = "exec dump "
if option 3 then
strSql = "exec marry "
Thanks.