TriggerAction.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // System.Data.Sql.TriggerAction
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Sql {
  11. public enum TriggerAction
  12. {
  13. AlterAppRole,
  14. AlterAssembly,
  15. AlterBinding,
  16. AlterFunction,
  17. AlterIndex,
  18. AlterLogin,
  19. AlterPartitionFunction,
  20. AlterPartitionScheme,
  21. AlterProcedure,
  22. AlterQueue,
  23. AlterRole,
  24. AlterRoute,
  25. AlterSchema,
  26. AlterService,
  27. AlterTable,
  28. AlterTrigger,
  29. AlterUser,
  30. AlterView,
  31. CreateAppRole,
  32. CreateAssembly,
  33. CreateBinding,
  34. CreateContract,
  35. CreateEventNotification,
  36. CreateFunction,
  37. CreateIndex,
  38. CreateLogin,
  39. CreateMsgType,
  40. CreatePartitionFunction,
  41. CreatePartitionScheme,
  42. CreateProcedure,
  43. CreateQueue,
  44. CreateRole,
  45. CreateRoute,
  46. CreateSchema,
  47. CreateSecexpr,
  48. CreateService,
  49. CreateSynonym,
  50. CreateTable,
  51. CreateTrigger,
  52. CreateType,
  53. CreateUser,
  54. CreateView,
  55. Delete,
  56. DenyObject,
  57. DropAppRole,
  58. DropAssembly,
  59. DropBinding,
  60. DropContract,
  61. DropEventNotification,
  62. DropFunction,
  63. DropIndex,
  64. DropLogin,
  65. DropMsgType,
  66. DropPartitionFunction,
  67. DropPartitionScheme,
  68. DropProcedure,
  69. DropQueue,
  70. DropRole,
  71. DropRoute,
  72. DropSchema,
  73. DropSecexpr,
  74. DropService,
  75. DropSynonym,
  76. DropTable,
  77. DropTrigger,
  78. DropType,
  79. DropUser,
  80. DropView,
  81. GrantObject,
  82. GrantStatement,
  83. Insert,
  84. Invalid,
  85. RevokeObject,
  86. RevokeStatement,
  87. Update
  88. }
  89. }
  90. #endif