dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLoader Class / SetValue Method / SetValue(Int32,Object) Method
Zero-based index of the column.
Column value.

In This Topic
    SetValue(Int32,Object) Method
    In This Topic
    Sets the value of the column at the specified ordinal.
    Syntax
    'Declaration
     
    Public Overloads Overrides Sub SetValue( _
       ByVal i As Integer, _
       ByVal value As Object _
    ) 
    public override void SetValue( 
       int i,
       object value
    )

    Parameters

    i
    Zero-based index of the column.
    value
    Column value.
    Remarks

    Use SetValue(Int32,Object) method to set column with specific index in the current row to the value. To assign a column NULL value use Devart.Common.DbLoader.SetNull method instead.

    The columns that you did not explicitly assign a value are considered to be NULL.

    See Also