UpdateRowSource.cs 357 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.UpdateRowSource.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies how query command results are applied to the row being updated.
  13. /// </summary>
  14. public enum UpdateRowSource
  15. {
  16. Both,
  17. FirstReturnedRecord,
  18. None,
  19. OutputParameters
  20. }
  21. }