NullBooleanBehavior
This property determines how the NULL values should be treated for the Boolean columns.
Possible Values
IGNORE, FALSEData Type
string
Default Value
"IGNORE"
Remarks
By default, if an NULL value is occurred in a Boolean column, the driver will ignore the NULL value. * NullBooleanBehavior='IGNORE' the NULL value will be ignored for CUD operation while for the SELECT operation the driver will comapre it with the NULL value. * NullBooleanBehavior='FALSE' the NULL value will be converted to 'False' for the CUD operation and the SELECT operation.