dotConnect for DB2 Documentation
Devart.Data.DB2 Namespace / DB2Loader Class / DB2Loader Constructor / DB2Loader Constructor(String,DB2Connection,DB2LoaderOptions)
Name of the table that will be loaded.
A DB2Connection object that represents the connection to a data source.
Settings for the DB2Loader instance.

In This Topic
    DB2Loader Constructor(String,DB2Connection,DB2LoaderOptions)
    In This Topic
    Initializes a new instance of the DB2Loader class with table name that will be loaded and a DB2Connection object.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal tableName As String, _
       ByVal connection As DB2Connection, _
       ByVal options As DB2LoaderOptions _
    )
    public DB2Loader( 
       string tableName,
       DB2Connection connection,
       DB2LoaderOptions options
    )

    Parameters

    tableName
    Name of the table that will be loaded.
    connection
    A DB2Connection object that represents the connection to a data source.
    options
    Settings for the DB2Loader instance.
    Remarks
    Use this constructor to set TableName, Connection, and Options properties at the time of initialization.
    See Also