VistaDB 6
VistaDB.Provider Namespace / VistaDBParameterCollection Class / Add Method / Add(String,VistaDBType,Int32) Method
The name of the parameter.
One of the VistaDBType values.
The size as an Int32.


In This Topic
    Add(String,VistaDBType,Int32) Method
    In This Topic
    Adds a VistaDBParameter to the VistaDBParameterCollection, given the specified parameter name and value.
    Syntax
    'Declaration
     
    
    Public Overloads Function Add( _
       ByVal parameterName As System.String, _
       ByVal dataType As VistaDBType, _
       ByVal size As System.Integer _
    ) As VistaDBParameter
    'Usage
     
    
    Dim instance As VistaDBParameterCollection
    Dim parameterName As System.String
    Dim dataType As VistaDBType
    Dim size As System.Integer
    Dim value As VistaDBParameter
     
    value = instance.Add(parameterName, dataType, size)
    public VistaDBParameter Add( 
       System.string parameterName,
       VistaDBType dataType,
       System.int size
    )

    Parameters

    parameterName
    The name of the parameter.
    dataType
    One of the VistaDBType values.
    size
    The size as an Int32.

    Return Value

    The new VistaDBParameter object.
    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