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 2.0 API Reference » ULParameter class

Direction property Next Page

IsNullable property


Specifies whether the parameter accepts null values.

Syntax

Visual Basic

Public Overrides Property IsNullable As Boolean

C#

public override 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.

See also