StatementType.cs 421 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.StatementType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies the type of SQL query to be used by the OleDbRowUpdatedEventArgs, OleDbRowUpdatingEventArgs, SqlRowUpdatedEventArgs, or SqlRowUpdatingEventArgs class.
  13. /// </summary>
  14. public enum StatementType
  15. {
  16. Delete,
  17. Insert,
  18. Select,
  19. Update
  20. }
  21. }