| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.Data.Sql.TriggerAction
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Sql {
- public enum TriggerAction
- {
- AlterAppRole,
- AlterAssembly,
- AlterBinding,
- AlterFunction,
- AlterIndex,
- AlterLogin,
- AlterPartitionFunction,
- AlterPartitionScheme,
- AlterProcedure,
- AlterQueue,
- AlterRole,
- AlterRoute,
- AlterSchema,
- AlterService,
- AlterTable,
- AlterTrigger,
- AlterUser,
- AlterView,
- CreateAppRole,
- CreateAssembly,
- CreateBinding,
- CreateContract,
- CreateEventNotification,
- CreateFunction,
- CreateIndex,
- CreateLogin,
- CreateMsgType,
- CreatePartitionFunction,
- CreatePartitionScheme,
- CreateProcedure,
- CreateQueue,
- CreateRole,
- CreateRoute,
- CreateSchema,
- CreateSecexpr,
- CreateService,
- CreateSynonym,
- CreateTable,
- CreateTrigger,
- CreateType,
- CreateUser,
- CreateView,
- Delete,
- DenyObject,
- DropAppRole,
- DropAssembly,
- DropBinding,
- DropContract,
- DropEventNotification,
- DropFunction,
- DropIndex,
- DropLogin,
- DropMsgType,
- DropPartitionFunction,
- DropPartitionScheme,
- DropProcedure,
- DropQueue,
- DropRole,
- DropRoute,
- DropSchema,
- DropSecexpr,
- DropService,
- DropSynonym,
- DropTable,
- DropTrigger,
- DropType,
- DropUser,
- DropView,
- GrantObject,
- GrantStatement,
- Insert,
- Invalid,
- RevokeObject,
- RevokeStatement,
- Update
- }
- }
- #endif
|