CommandBehavior.cs 514 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Data.CommandBehavior.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies a description of the results and the affect on the database of the query command.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. public enum CommandBehavior
  16. {
  17. CloseConnection,
  18. KeyInfo,
  19. SchemaOnly,
  20. SequentialAccess,
  21. SingleResult,
  22. SingleRow
  23. }
  24. }