DbNetSuiteVS
ReaderValue Method (ColumnIndex)
NamespacesDbNetLink.DataDbNetDataReaderValue(Int32)
Returns the value for the current row in the Reader for the specified column index
Declaration Syntax
C#Visual Basic
public Object ReaderValue(
	int ColumnIndex
)
Public Function ReaderValue ( _
	ColumnIndex As Integer _
) As Object
Parameters
ColumnIndex (Int32)

The inedx of the column

Return Value
The reader column value
Examples
CopyC#
DbNetData Data = new DbNetData( ConfigurationSettings.AppSettings[ "nwind" ] );
Data.Open();
Data.ExecuteSingletonQuery("select count(*) from subscribers");
SubsriberCount.Value = Data.ReaderValue(0);
Data.Close();

Assembly: DbNetLink.DbNetSuiteVS (Module: DbNetLink.DbNetSuiteVS) Version: 0.9.3317.16858 (0.9.0.0)