程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 用C#寫托管觸發器(2)

用C#寫托管觸發器(2)

編輯:關於C語言

添加觸發器

右擊顼目添加一個觸發器

The file Trigger1.cs:

添加下面的代碼到Trigger1.cs文件中,確保俘的數據庫中存在Person數據表,或者用你數據庫的表替換Person.

using System;
using System.Data;
using System.Data.SqlClIEnt;
using Microsoft.SqlServer.Server;
  
public partial class Triggers
{
  // Enter existing table or vIEw for the target and uncomment the attribute line
   [Microsoft.SqlServer.Server.SqlTrigger (Name="Trigger1", Target="Person", Event="FOR UPDATE")]
  public static void Trigger1()
  {
    // Replace with your own code
    SqlContext.Pipe.Send("Trigger FIRED");
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved