MySqlLoaderColumn Constructor(String,MySqlType,Int32)
Initializes a new instance of the
MySqlLoaderColumn class with the column name, column data type and column size.
The following example creates a
MySqlLoaderColumn and sets some of its properties.
|
|---|
public void CreateMyLoaderColumn(MySqlLoader loader)
{
...
MySqlLoaderColumn column = new MySqlLoaderColumn("dname", MySqlType.VarChar, 25);
loader.Add(column);
...
} |
|
|---|
Public Sub CreateMyLoaderColumn(loader as MySqlLoader)
...
Dim column as MySqlLoaderColumn = new MySqlLoaderColumn("dname", MySqlType.VarChar, 25)
loader.Add(column)
...
End Sub |