| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // System.Data.Sql.ISqlReader
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Sql {
- public interface ISqlReader : IDisposable, ISqlRecord, ISqlGetTypedData, IGetTypedData
- {
- #region Properties
- int Depth { get; }
- bool HasRows { get; }
- bool IsClosed { get; }
- int RecordsAffected { get; }
- #endregion // Properties
- #region Methods
- void Close ();
- DataTable GetSchemaTable ();
- bool NextResult ();
- bool Read ();
- #endregion // Methods
- }
- }
- #endif
|