| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- //
- // System.Data.IDataRecord.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Provides access to the column values within each row for a DataReader, and is implemented by .NET data providers that access relational databases.
- /// </summary>
- public interface IDataRecord
- {
- bool GetBoolean(int i)
- {
- }
- byte GetByte(int i)
- {
- }
- long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferOffset, int length)
- {
- }
- char GetChar(int i)
- {
- }
- long GetChars(int i, long fieldOffset, char[] buffer, int bufferOffset, int length)
- {
- }
- IDataReader GetDate(int i)
- {
- }
- string GetDataTypeName(int i)
- {
- }
- DateTime GetDateTime(int i)
- {
- }
- decimal GetDecimal(int i)
- {
- }
- double GetDouble(int i)
- {
- }
- Type GetFieldType(int i)
- {
- }
- float GetFloat(int i)
- {
- }
- Guid GetGuid(int i)
- {
- }
- short GetInt16(int i)
- {
- }
- int GetInt32(int i)
- {
- }
- long GetInt64(int i)
- {
- }
- string GetName(int i)
- {
- }
- int GetOrdinal(string name)
- {
- }
- string GetString(int i)
- {
- }
- object GetValue(int i)
- {
- }
- int GetValues(object[] values)
- {
- }
- bool IsDBNull(int i)
- {
- }
- int FieldCount
- {
- get
- {
- }
- }
- object this[string name]
- {
- get
- {
- }
- }
-
- object this[int i]
- {
- get
- {
- }
- }
- }
- }
|