DbNetSuiteVS
ReaderValue Method (ColumnName)
NamespacesDbNetLink.DataDbNetDataReaderValue(String)
Returns the value for the current row in the Reader for the specified column name
Declaration Syntax
C#Visual Basic
public Object ReaderValue(
	string ColumnName
)
Public Function ReaderValue ( _
	ColumnName As String _
) As Object
Parameters
ColumnName (String)

The name of the column

Return Value
The reader column value
Examples
CopyC#
DbNetData Data = new DbNetData( ConfigurationSettings.AppSettings[ "nwind" ] );
Data.Open();
Data.ExecuteQuery("select * from subscribers");
while ( Data.Reader.Read() )
{
    SendMailMessage( Daa.ReaderValue("email_address").ToString() )
}
Data.Close();

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