StoredProcForSelect property

Applies to
TIB_StoredProc

Declaration
Property StoredProcForSelect : boolean;

Description
If the stored procedure is for the purpose of selecting multiple records or for selecting a single record where the SUSPEND statement has been used in the stored procedure then set this property to true. Then, use this just like you would an IB_Cursor to navigate through the records in a unidirectional fashion.

When this is false the ExecProc method should be called to execute the stored procedure. This will properly handle the output row when SUSPEND is not used in the body of the stored procedure.