VistaDB 6
VistaDB.DDA Namespace / IVistaDBDatabase Interface / InvokeClrProcedureFillRow Method
The Clr Procedure custom name
An argument list for the invoked method. This is a set of objects with the same number, order, and type as the parameters of the function or procedure to be invoked


In This Topic
    InvokeClrProcedureFillRow Method
    In This Topic
    Invoke the FillRow method for Clr Procedure
    Syntax
    'Declaration
     
    
    Function InvokeClrProcedureFillRow( _
       ByVal procedureName As System.String, _
       ByVal ParamArray parameters() As System.Object _
    ) As System.Object
    'Usage
     
    
    Dim instance As IVistaDBDatabase
    Dim procedureName As System.String
    Dim parameters() As System.Object
    Dim value As System.Object
     
    value = instance.InvokeClrProcedureFillRow(procedureName, parameters)
    System.object InvokeClrProcedureFillRow( 
       System.string procedureName,
       params System.object[] parameters
    )

    Parameters

    procedureName
    The Clr Procedure custom name
    parameters
    An argument list for the invoked method. This is a set of objects with the same number, order, and type as the parameters of the function or procedure to be invoked

    Return Value

    An object containing the return value of the invoked function, or a null reference (Nothing in Visual Basic) in the case of invoked procedure.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also