Macro: SQLCall

Module location: sql.pkg line 2022 (view source)

    If (!1) Begin
        #IF (!0>1)
            //*** Setup name, arguments and return value before actually calling
            Send SQLSetProcedureName To !1 !2 !3
            #IF (!0>2)
                SQL$SetNextArgument !1 !4 !5 !6 !7 !8 !9
            #ENDIF

            //*** Call
            Send SQLCall To !1

            //*** Get arguments and return value after the call
            #IF (!0>2)
                SQL$GetNextArgument !1 !4 !5 !6 !7 !8 !9
            #ENDIF
        #ENDIF
    End