Returns the value of the specified named column in its native format. In C#, this property is the indexer for the ULDataReader class.
Visual Basic Public Overrides Default Readonly Property Item( _ ByVal name As String _ ) As Object
C# public override object this[ string name ] { get;}
name The name of the column.
The column value as the .NET type most appropriate for the column or DBNull if column is NULL.
Note that in result sets, not all columns have names and not all column names are unique. If you are not using aliases, the name of a non-computed column is prefixed with the name of the table the column is from. For example, MyTable.ID is the name of the only column in the result set for the query "SELECT ID FROM MyTable".
When accessing columns multiple times, it is more efficient to access columns by column ID than by name.
This method is equivalent to:
dataReader.GetValue( dataReader.GetOrdinal( name ) ) |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |