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 » ULDataReader class » Item properties

Item properties Next Page

Item(Int32) property


Returns the value of the specified column in its native format. In C#, this property is the indexer for the ULDataReader class.

Syntax

Visual Basic

Public Overrides Default Readonly Property Item ( _
ByVal columnID As Integer _
) As Object

C#

public override object this [
int columnID
] { get;}

Parameters
Property value

The column value as the .NET type most appropriate for the column or DBNull if column is NULL.

Remarks

This method is identical in functionality to the ULDataReader.GetValue(int) method.

See also