public:
generic <typename T>
override T GetFieldValue(int i);
public override T GetFieldValue<T>(int i);
override this.GetFieldValue : int -> 'T
Public Overrides Function GetFieldValue(Of T) (i As Integer) As T
Type Parameters
The type of the value to be returned.
ParametersThe column to be retrieved.
ReturnsT
The returned type object.
ExceptionsThe connection drops or is closed during the data retrieval.
The SqlDataReader is closed during the data retrieval.
There is no data ready to be read (for example, the first Read() hasn't been called, or returned false).
Tried to read a previously-read column in sequential mode.
There was an asynchronous operation in progress. This applies to all Get* methods when running in sequential mode, as they could be called while reading a stream.
Trying to read a column that does not exist.
The value of the column was null (IsDBNull(Int32) == true
), retrieving a non-SQL type.
T
doesn't match the type returned by SQL Server or cannot be cast.
T
can be one of the following types:
Boolean, Byte, Char, DateTime, DateTimeOffset, Decimal, Double, Float, Guid, Int16, Int32, Int64, SqlBoolean, SqlByte, SqlDateTime, SqlDecimal, SqlDouble, SqlGuid, SqlInt16, SqlInt32, SqlInt64, SqlMoney, SqlSingle, SqlString, String, or UDT (any CLR type marked with SqlUserDefinedTypeAttribute).
For more information, see SqlClient Streaming Support.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4