dotConnect Universal Documentation
Devart.Data.Universal Namespace / UniCommandBuilder Class / DeriveParameters Method
The UniCommand referencing the stored procedure for which the parameter information is to be derived. The derived parameters will be populated into the UniCommand.Parameters collection of this command.

In This Topic
    DeriveParameters Method (UniCommandBuilder)
    In This Topic
    Populates the specified UniCommand object's UniCommand.Parameters collection with parameter information for a stored procedure specified in the CommandText.
    Syntax
    'Declaration
     
    Public Shared Sub DeriveParameters( _
       ByVal command As UniCommand _
    ) 
    public static void DeriveParameters( 
       UniCommand command
    )

    Parameters

    command
    The UniCommand referencing the stored procedure for which the parameter information is to be derived. The derived parameters will be populated into the UniCommand.Parameters collection of this command.
    Remarks
    DeriveParameters overwrites any existing parameter information for the UniCommand.

    DeriveParameters requires an extra call to the data server to obtain the information. If the parameter information is known in advance, it is more efficient to populate the parameters collection by setting the information explicitly.

    For more information, see "Using Stored Procedures with a Command" in the Microsoft .NET Framework SDK documentation.

    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