SqlDataReader.cs 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // System.Data.SqlClient.SqlDataReader.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. namespace System.Data.SqlClient
  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 SQL database.
  13. /// </summary>
  14. public interface SqlDataReader : IDataReader
  15. {
  16. [MonoTODO]
  17. void Close()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. DataTable GetSchemaTable()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. bool NextResult()
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. bool Read()
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. int Depth
  38. {
  39. get { throw new NotImplementedException (); }
  40. }
  41. [MonoTODO]
  42. bool IsClosed
  43. {
  44. get { throw new NotImplementedException (); }
  45. }
  46. [MonoTODO]
  47. int RecordsAffected
  48. {
  49. get { throw new NotImplementedException (); }
  50. }
  51. }
  52. }