SqlErrors.cs 391 B

1234567891011121314151617181920
  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 class SqlErrors : ICollection, IEnumerable
  15. {
  16. // TODO
  17. }
  18. }