| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // System.Data.IDataReader.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Provides a means of reading one or more forward-only streams of result sets obtained by executing a command at a data source, and is implemented by .NET data providers that access relational databases.
- /// </summary>
- public interface IDataReader : IDataRecord
- {
- void Close()
- {
- }
-
- DataTable GetSchemaTable()
- {
- }
-
- bool NextResult()
- {
- }
- bool Read()
- {
- }
- int Depth
- {
- get
- {
- }
- }
- bool IsClosed
- {
- get
- {
- }
- }
- int RecordsAffected
- {
- get
- {
- }
- }
- }
- }
|