Executes stored procedure without storing resultset.
Syntax:
procedure ExecProc();
Description:
ExecProc method is used to execute stored procedure without storing a resultset. This can be useful when stored procedure does not return a resultset, or when a resultset from the procedure is not required for further processing. ExecProc just executes CALL procedure_name(params) statement filled with the parameters from Params property.
If you need to store resultset from stored procedure please use Open() method or set Active property to True.