IDataReader.cs 685 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // System.Data.IDataReader.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// 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.
  13. /// </summary>
  14. public interface IDataReader : IDataRecord
  15. {
  16. void Close()
  17. {
  18. }
  19. DataTable GetSchemaTable()
  20. {
  21. }
  22. bool NextResult()
  23. {
  24. }
  25. bool Read()
  26. {
  27. }
  28. int Depth
  29. {
  30. get
  31. {
  32. }
  33. }
  34. bool IsClosed
  35. {
  36. get
  37. {
  38. }
  39. }
  40. int RecordsAffected
  41. {
  42. get
  43. {
  44. }
  45. }
  46. }
  47. }