OracleLoaderColumn Constructor(String,OracleDbType,Int32,Int32,Int32,String)
In This Topic
Initializes a new instance of the
OracleLoaderColumn class with the column name, column data type, column size, precision, scale and date format.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As OracleDbType, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As String _
)
public OracleLoaderColumn(
string ,
OracleDbType ,
int ,
int ,
int ,
string
)
Parameters
- name
- The name of the column.
- dbType
- One of the OracleDbType values.
- size
- Maximum size of column data.
- precision
- The precision of the column.
- scale
- The scale of the column.
- dateFormat
- Date format for the column.
See Also