VistaDB 6
VistaDB.Provider Namespace / VistaDBCommandBuilder Class / ApplyParameterInfo Method
A System.Data.Common.DbParameter to which the additional modifications are applied.
The System.Data.DataRow from the schema table provided by System.Data.Common.DbDataReader.GetSchemaTable.
The type of command being generated; INSERT, UPDATE or DELETE.
true if the parameter is part of the update or delete WHERE clause, false if it is part of the insert or update values.


In This Topic
    ApplyParameterInfo Method
    In This Topic
    Allows the provider implementation of the System.Data.Common.DbCommandBuilder class to handle additional parameter properties.
    Syntax
    'Declaration
     
    
    Protected Overrides NotOverridable Sub ApplyParameterInfo( _
       ByVal parameter As System.Data.Common.DbParameter, _
       ByVal row As System.Data.DataRow, _
       ByVal statementType As System.Data.StatementType, _
       ByVal whereClause As System.Boolean _
    ) 
    'Usage
     
    
    Dim instance As VistaDBCommandBuilder
    Dim parameter As System.Data.Common.DbParameter
    Dim row As System.Data.DataRow
    Dim statementType As System.Data.StatementType
    Dim whereClause As System.Boolean
     
    instance.ApplyParameterInfo(parameter, row, statementType, whereClause)
    protected override void ApplyParameterInfo( 
       System.Data.Common.DbParameter parameter,
       System.Data.DataRow row,
       System.Data.StatementType statementType,
       System.bool whereClause
    )

    Parameters

    parameter
    A System.Data.Common.DbParameter to which the additional modifications are applied.
    row
    The System.Data.DataRow from the schema table provided by System.Data.Common.DbDataReader.GetSchemaTable.
    statementType
    The type of command being generated; INSERT, UPDATE or DELETE.
    whereClause
    true if the parameter is part of the update or delete WHERE clause, false if it is part of the insert or update values.
    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