dotConnect for Oracle Documentation
Devart.Common Namespace / DbLoaderColumn Class / DbLoaderColumn Constructor / DbLoaderColumn Constructor(String,Int32,Int32,Int32)
The name of the column.
Maximum size of column data.
The precision of the column.
The scale of the column.

In This Topic
    DbLoaderColumn Constructor(String,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the DbLoaderColumn class with the column name, size, precision and scale.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal size As Integer, _
       ByVal precision As Integer, _
       ByVal scale As Integer _
    )
    public DbLoaderColumn( 
       string name,
       int size,
       int precision,
       int scale
    )

    Parameters

    name
    The name of the column.
    size
    Maximum size of column data.
    precision
    The precision of the column.
    scale
    The scale of the column.
    Remarks
    Use this constructor to create a DbLoaderColumn instance with custom column name, data size, precision and scale.
    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