Hello:
When I try to do the following,
Dim liTemp As System.DBNull
If c.Value Is Nothing Then
newDataTableRow (c.Column.Key) = liTemp
Else
newDataTableRow (c.Column.Key) = c.Value
End If
I get the exception:
Exception Details: System.Argument Exception: Cannot set Column 'D_STAT_DT'
to be null. Please use DBNull instead.
Am I not doing that?
Venki
When I try to do the following,
Dim liTemp As System.DBNull
If c.Value Is Nothing Then
newDataTableRow (c.Column.Key) = liTemp
Else
newDataTableRow (c.Column.Key) = c.Value
End If
I get the exception:
Exception Details: System.Argument Exception: Cannot set Column 'D_STAT_DT'
to be null. Please use DBNull instead.
Am I not doing that?
Venki
Comment