dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLoaderColumnCollection Class / Add Method / Add(String,OracleDbType,Int32,Int32) Method
The name of the column.
One of the OracleDbType values.
The precision of the column.
The scale of the column.

In This Topic
Add(String,OracleDbType,Int32,Int32) Method
In This Topic
Adds an OracleLoaderColumn to the OracleLoaderColumnCollection given the column name, column data type, precision, and scale.
Syntax
'Declaration
 
Public Overloads Function Add( _
   ByVal name As String, _
   ByVal dbType As OracleDbType, _
   ByVal precision As Integer, _
   ByVal scale As Integer _
) As Integer
 

Parameters

name
The name of the column.
dbType
One of the OracleDbType values.
precision
The precision of the column.
scale
The scale of the column.

Return Value

The new column's index.
See Also