VB+触发器
目的:修改数据表记录时(例如:DELETE),调用触发器来修改相关的数据表记录,从而达到数据库一致性。代码如何写才能完成这样的功能呀?
[解决办法]
这些是要写在数据库里的
USE Northwind
DROP TRIGGER tr1
GO
CREATE TRIGGER tr1 ON Customers
FOR UPDATE AS
print 'asdf '
GO
UPDATE Customers
SET ContactName=ContactName,
Address=Address,
Country=Country
GO
====customers表有改动时在查询分析器中显示asdf