Guest_imported
New member
- Jan 1, 1970
- 0
I want to use a pass-through query to execute a SQL stored procedure. Simple enough in itself, but I want to get user-supplied parameters into the pass-through query as it runs
eg the query looks like
EXECUTE spTest1 @AreaCode = 124
I want the user to supply the area-code in a form control - how do I write the code to get the supplied value into the query before it runs?
eg the query looks like
EXECUTE spTest1 @AreaCode = 124
I want the user to supply the area-code in a form control - how do I write the code to get the supplied value into the query before it runs?