SqlTriggerContext Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Fornisce informazioni contestuali sul trigger che è stato attivato.
public ref class SqlTriggerContext sealed
public sealed class SqlTriggerContext
type SqlTriggerContext = class
Public NotInheritable Class SqlTriggerContext
- Ereditarietà
-
SqlTriggerContext
Esempio
Nell'esempio seguente viene illustrato un SqlTriggerContext oggetto usato per determinare se si è verificata un'azione Insert . Se una riga è stata inserita nella user
tabella , il nome utente e il nome reale vengono recuperati dalla riga inserita e quindi aggiunti alla tabella UserNameAudit .
[SqlTrigger(Name = @"UsersAudit", Target = "[dbo].[users]", Event = "FOR INSERT")]
public static void UsersAudit()
{
// Get the trigger context.
string userName;
string realName;
SqlCommand command;
SqlTriggerContext triggContext = SqlContext.TriggerContext;
SqlDataReader reader;
switch (triggContext.TriggerAction)
{
case TriggerAction.Insert:
// Retrieve the connection that the trigger is using.
using (SqlConnection connection
= new SqlConnection(@"context connection=true"))
{
connection.Open();
// Get the inserted row.
command = new SqlCommand(@"SELECT * FROM INSERTED;",
connection);
// Get the user name and real name of the inserted user.
reader = command.ExecuteReader();
reader.Read();
userName = (string)reader[0];
realName = (string)reader[1];
reader.Close();
// Insert the user name and real name into the auditing table.
command = new SqlCommand(@"INSERT [dbo].[UserNameAudit] (userName, realName) "
+ @"VALUES (@userName, @realName);", connection);
command.Parameters.Add(new SqlParameter("@userName", userName));
command.Parameters.Add(new SqlParameter("@realName", realName));
command.ExecuteNonQuery();
}
break;
}
}
<SqlTrigger(Name:="UsersAudit", Target:="[dbo].[users]", Event:="FOR INSERT")> _
Public Shared Sub UsersAudit()
Dim command As SqlCommand
Dim triggContext As SqlTriggerContext
Dim reader As SqlDataReader
Dim userName As String
Dim realName As String
' Get the trigger context.
triggContext = SqlContext.TriggerContext
Select Case triggContext.TriggerAction
Case TriggerAction.Insert
' Retrieve the connection that the trigger is using.
Using connection As New SqlConnection("context connection=true")
connection.Open()
' Get the inserted row.
command = new SqlCommand("SELECT * FROM INSERTED;", connection)
' Get the user name and real name of the inserted user.
reader = command.ExecuteReader()
reader.Read()
userName = CType(reader(0), String)
realName = CType(reader(1), String)
reader.Close()
' Insert the user name and real name into the auditing table.
command = New SqlCommand("INSERT [dbo].[UserNameAudit] (userName, realName) " & _
"VALUES (@userName, @realName);", connection)
command.Parameters.Add(new SqlParameter("@userName", userName))
command.Parameters.Add(new SqlParameter("@realName", realName))
command.ExecuteNonQuery()
End Using
End Select
End Sub
Commenti
Le informazioni contestuali fornite includono il tipo di azione che ha causato l'attivazione del trigger, le colonne modificate in un'operazione UPDATE e, nel caso di un trigger DDL (Data Definition Language) XML, una struttura EventData XML (vedere Riferimento Transact-SQL) che descrive l'operazione di attivazione.
Un'istanza di è disponibile dalla SqlContext classe, quando il codice viene eseguito all'interno di SqlTriggerContext un trigger tramite la TriggerContext proprietà .
Proprietà
ColumnCount |
Ottiene il numero di colonne contenute nella tabella dei dati associata al trigger. Questa proprietà è di sola lettura. |
EventData |
Ottiene i dati dell'evento specifici per l'azione che ha attivato il trigger. |
TriggerAction |
Indica l'azione che ha attivato il trigger. |
Metodi
IsUpdatedColumn(Int32) |
Restituisce |