SELECT Like a Boss With Query Parameters
Updated 2 years ago
Version 4.0I'm referring to an output parameter of the DB Stored procedure.
So in the example above you are only sending parameters into the stored procedure, but stored procedures can return parameters back out. How can I pull the OUTPUT parameter and use it in my business rule?
Dim SqlQuery As String = "EXEC SP_API_CLIMATIQ_TRAVEL_FLIGHT @param1_IN=param1Val, @param2_IN=param2Val, @param3_OUT"