VistaDB 6
VistaDB.Provider Namespace / VistaDBParameter Class / VistaDBParameter Constructor / VistaDBParameter Constructor(String,VistaDBType,Int32,String)
The name of the parameter to map.
One of the VistaDBType values.
The length of the parameter.
The name of the source column.


In This Topic
    VistaDBParameter Constructor(String,VistaDBType,Int32,String)
    In This Topic
    Initializes a new instance of the VistaDBParameter class that uses the parameter name, the VistaDBType, the size, and the source column name.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal parameterName As System.String, _
       ByVal dataType As VistaDBType, _
       ByVal size As System.Integer, _
       ByVal sourceColumn As System.String _
    )
    'Usage
     
    
    Dim parameterName As System.String
    Dim dataType As VistaDBType
    Dim size As System.Integer
    Dim sourceColumn As System.String
     
    Dim instance As New VistaDBParameter(parameterName, dataType, size, sourceColumn)
    public VistaDBParameter( 
       System.string parameterName,
       VistaDBType dataType,
       System.int size,
       System.string sourceColumn
    )

    Parameters

    parameterName
    The name of the parameter to map.
    dataType
    One of the VistaDBType values.
    size
    The length of the parameter.
    sourceColumn
    The name of the source column.
    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