IMutableDmlTrigger Interface
Represents a mutable SQL Server DML trigger.
Namespace: Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly: Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)
Syntax
'Declaration
Public Interface IMutableDmlTrigger _
Inherits IDmlTrigger, IMutableTrigger, ITrigger, IMutableMetadataObject, _
IMetadataObject
'Usage
Dim instance As IMutableDmlTrigger
public interface IMutableDmlTrigger : IDmlTrigger,
IMutableTrigger, ITrigger, IMutableMetadataObject, IMetadataObject
public interface class IMutableDmlTrigger : IDmlTrigger,
IMutableTrigger, ITrigger, IMutableMetadataObject, IMetadataObject
type IMutableDmlTrigger =
interface
interface IDmlTrigger
interface IMutableTrigger
interface ITrigger
interface IMutableMetadataObject
interface IMetadataObject
end
public interface IMutableDmlTrigger extends IDmlTrigger, IMutableTrigger, ITrigger, IMutableMetadataObject, IMetadataObject
The IMutableDmlTrigger type exposes the following members.
Properties
Name | Description | |
---|---|---|
BodyText | Gets or sets the Transact-SQL statements that define the module. (Inherited from IMutableTrigger.) | |
BodyText | Gets the Transact-SQL statements that define the module. (Inherited from ITrigger.) | |
Delete | Gets a value that indicates whether the DML trigger activates on a DELETE statement. (Inherited from IDmlTrigger.) | |
Delete | Gets or sets a value that indicates whether the DML trigger activates on a DELETE statement. | |
ExecutionContext | Gets or sets an IExecutionContext object that specifies the module execution context. (Inherited from IMutableTrigger.) | |
ExecutionContext | Gets an IExecutionContext object that specifies the module execution context. (Inherited from ITrigger.) | |
Insert | Gets a value that indicates whether the DML trigger activates on an INSERT statement. (Inherited from IDmlTrigger.) | |
Insert | Gets or sets a value that indicates whether the DML trigger activates on an INSERT statement. | |
InsteadOf | Gets a value that indicates whether the DML trigger executes instead of the triggering Transact-SQL statement. (Inherited from IDmlTrigger.) | |
InsteadOf | Gets or sets a value that indicates whether the DML trigger executes instead of the triggering Transact-SQL statement. | |
IsEncrypted | Gets or sets a value that indicates whether the module is encrypted. (Inherited from IMutableTrigger.) | |
IsEncrypted | Gets a value that indicates whether the module is encrypted. (Inherited from ITrigger.) | |
IsQuotedIdentifierOn | Gets a value that indicates whether the quoted identifier option is on. (Inherited from IDmlTrigger.) | |
IsQuotedIdentifierOn | Gets or sets a Boolean value that indicates whether the quoted identifier is on. | |
Name | Gets the name of the metadata object. (Inherited from IMetadataObject.) | |
NotForReplication | Gets a value that indicates whether the DML trigger is available for replication. (Inherited from IDmlTrigger.) | |
NotForReplication | Gets or sets a value that indicates whether the trigger is available for replication. | |
Parent | Gets the ITableViewBase object that is the parent of this object. (Inherited from IDmlTrigger.) | |
Update | Gets a value that indicates whether the DML trigger activates on an UPDATE statement. (Inherited from IDmlTrigger.) | |
Update | Gets or sets a value that indicates whether the DML trigger is activated on an UPDATE statement. |
Top
Methods
Name | Description | |
---|---|---|
Accept<T> | Accepts a visit from the specified IMetadataObjectVisitor<T> object. (Inherited from IMetadataObject.) |
Top