Text propriété
Gets or sets the Transact-SQL statement that defines the server data definition language (DDL) trigger.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property Text As String
Get
'Utilisation
Dim instance As ServerDdlTrigger
Dim value As String
value = instance.Text
[SfcPropertyAttribute(SfcPropertyFlags.Expensive)]
public string Text { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Expensive)]
public:
property String^ Text {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Expensive)>]
member Text : string
function get Text () : String
Valeur de la propriété
Type : System. . :: . .String
A String value that specifies the actual text of the Transact-SQL statement that defines the server DDL trigger.
Notes
The Text property of the ServerDdlTrigger object is equivalent to the sql_statement argument that comes after the AS clause in the CREATE TRIGGER Transact-SQL statement.
Voir aussi