Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 1.0 API Reference » ULParameter class

Direction property Next Page

IsNullable property


Specifies whether the parameter accepts null values.

Syntax

Visual Basic

Public Property IsNullable As Boolean _
Implements IDataParameter.IsNullable

C#

public bool IsNullable {get;set;}

Property value

True if null values are accepted, false otherwise. The default is false. Null values are handled using the DBNull class.

Remarks

In UltraLite.NET, parameters can only be used as IN parameters and all mapping information is ignored. Only the ULParameter.Value is important.

Implements

[external link] IDataParameter.IsNullable

See also