//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// markash
// laled
//------------------------------------------------------------------------------
namespace System.Data {
using System;
public interface IDataReader: IDisposable, IDataRecord {
int Depth {
get;
}
bool IsClosed {
get;
}
int RecordsAffected {
get;
}
void Close();
DataTable GetSchemaTable();
bool NextResult();
bool Read();
}
}