Synopsis
Boolean isNullable = Parameter.IsNulllable;
Parameter.IsNullable = isNullable;
This Boolean parameter indicates whether null
values are accepted for the Parameter.Value
property. The default is false
.
Note
If your parameter accepts null values, you can test for them using
the System.DBNull
class. In this case,
DBNull.Value
equals
Parameter.Value
.