ConnectionState.cs 453 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Data.ConnectionState.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Returns the current state of the connection to a data source.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. public enum ConnectionState
  16. {
  17. Broken,
  18. Closed,
  19. Connecting,
  20. Executing,
  21. Fetching,
  22. Open
  23. }
  24. }