Indicates whether the Value property can be set to DbNull.
Syntax
'Declaration
Public Overrides NotOverridable Property IsNullable As Boolean
'Usage
Dim instance As TdParameter
Dim value As Boolean
instance.IsNullable = value
value = instance.IsNullable
public override bool IsNullable {get; set;}
public:
property bool IsNullable {
bool get() override;
void set ( bool value) override;
}
Property Value
true
if TdParameter.Value can be set to DbNull and
false
otherwise. The default value is
false
Requirements
Product | Versions | Platforms |
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |
See Also