dotConnect for FreshBooks Documentation
Devart.Data Namespace / SqlShimLoaderColumn Class / SqlShimLoaderColumn Constructor / SqlShimLoaderColumn Constructor(String,DbType,Int32,Int32,Int32)
The name of the column.
One of the System.Data.DbType values.
Maximum size of column data.
The precision of the column.
The scale of the column.

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

    Parameters

    name
    The name of the column.
    dbType
    One of the System.Data.DbType values.
    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 SqlShimLoaderColumn instance with custom column name, data type, data size, precision and scale.
    See Also