- 论坛徽章:
- 0
|
本帖最后由 zlj2208 于 2011-08-26 09:55 编辑
自己搞定了!
我使用Aqua Data Studio 4.7 连接数据库,按照官方文档做实验,报各种错误, 后来同事在psql的命令行执行建立 triigger 和 function 的语句好用,然后就在命令行上做实验,问题解决了。
后来使用pgAdmin III图形工具也可以,不管怎么样问题解决了。下面是我的示例,希望对其他朋友有用。
Postgresql的例子太少了!那是相当少!
目的:对于基本表执行 insert,update,delete 在Log表中记录相关的操作内容。
1. 对基本表进行 insert 后会在log表中生成一条和基本表中相同的记录;
2. 对基本表进行 update 后会在log表中生成对基本表更新前和更新后2条记录;
3. 对基本表进行 delete 后会在log表中生成一条和基本表中相同的记录;
如果出现误操作可以通过log表来修正数据.
连接数据库工具: pgAdmin III
实验步骤:
1. 建立基本表和log表- create table testtable (
- id integer not null primary key ,
- sname varchar(100)
- );
- CREATE SEQUENCE seq_no1 MINVALUE 1;
- CREATE TABLE logtesttable (
- logtestid INTEGER PRIMARY KEY DEFAULT NEXTVAL('seq_no1'),
- id INTEGER,
- sname VARCHAR(100),
- updt_type VARCHAR(20) ,
- updt_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP
- );
复制代码 2. 建立 Trigger 和 Function- ---------------------------------------------
- --创建trigger调用的函数
- --
- CREATE OR REPLACE FUNCTION fun_trigger_insert()
- RETURNS TRIGGER
- LANGUAGE PLPGSQL
- AS
- $BODY$
- BEGIN
- INSERT INTO logtesttable(id,sname,updt_type,updt_time)
- VALUES(new.id,new.sname,'insert',current_timestamp);
- return new;
- END;
- $BODY$;
- CREATE OR REPLACE FUNCTION fun_trigger_update()
- RETURNS TRIGGER
- LANGUAGE PLPGSQL
- AS
- $BODY$
- BEGIN
- INSERT INTO logtesttable(id,sname,updt_type,updt_time)
- VALUES(OLD.id,OLD.sname,'before_update',current_timestamp);
- INSERT INTO logtesttable(id,sname,updt_type,updt_time)
- VALUES(new.id,new.sname,'after_update',current_timestamp);
- return new;
- END;
- $BODY$;
- CREATE OR REPLACE FUNCTION fun_trigger_delete()
- RETURNS TRIGGER
- LANGUAGE PLPGSQL
- AS $BODY$
- BEGIN
- INSERT INTO logtesttable(id,sname,updt_type,updt_time)
- VALUES(OLD.id,OLD.sname,'delete',current_timestamp);
- return OLD;
- END;
- $BODY$;
- -----------------------
- --建立Trigger
- --
- CREATE TRIGGER TRIGGER_INSERT
- AFTER INSERT ON testtable
- FOR EACH ROW EXECUTE PROCEDURE fun_trigger_insert();
- CREATE TRIGGER TRIGGER_UPDATE
- AFTER UPDATE ON testtable
- FOR EACH ROW EXECUTE PROCEDURE fun_trigger_update();
- CREATE TRIGGER TRIGGER_DELETE
- AFTER DELETE ON testtable
- FOR EACH ROW EXECUTE PROCEDURE fun_trigger_delete();
复制代码 3. 检验Trigger是否生效
1). insert 操作- insert into testtable values (10,'aaaaa');
- insert into testtable values (20,'bbbbb');
复制代码 查询数据库结果:- select * from testtable;
- select * from logtesttable;
- ------------------------
- 输出结果:
- ------------------------
- id sname
- ----- --------
- 10 aaaaa
- 20 bbbbb
- 2 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时49分05秒 ] [Execution: 0/ms]
- logtestid id sname updt_type updt_time
- ------------ ----- -------- ------------ --------------------------
- 1 10 aaaaa insert 2011-08-26 09:42:14.711853
- 2 20 bbbbb insert 2011-08-26 09:42:14.711853
- 2 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时49分05秒 ] [Execution: 0/ms]
复制代码 2). update 操作- update testtable set sname='xxxxxx' where id=20;
复制代码 查询数据库结果:- select * from testtable where id=20;
- select * from logtesttable where id=20;
- ------------------------
- 输出结果:
- ------------------------
- id sname
- ----- --------
- 10 aaaaa
- 20 xxxxxx
- 2 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时49分55秒 ] [Execution: 0/ms]
- logtestid id sname updt_type updt_time
- ------------ ----- -------- ------------- --------------------------
- 1 10 aaaaa insert 2011-08-26 09:42:14.711853
- 2 20 bbbbb insert 2011-08-26 09:42:14.711853
- 3 20 bbbbb before_update 2011-08-26 09:43:21.574783
- 4 20 xxxxxx after_update 2011-08-26 09:43:21.574783
- 4 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时49分55秒 ] [Execution: 0/ms]
复制代码 3). delete 操作- delete from testtable where id=20;
复制代码 查询数据库结果:- select * from testtable;
- select * from logtesttable;
- ------------------------
- 输出结果:
- ------------------------
- id sname
- ----- --------
- 10 aaaaa
- 1 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时51分21秒 ] [Execution: 0/ms]
- logtestid id sname updt_type updt_time
- ------------ ----- -------- ------------- --------------------------
- 1 10 aaaaa insert 2011-08-26 09:42:14.711853
- 2 20 bbbbb insert 2011-08-26 09:42:14.711853
- 3 20 bbbbb before_update 2011-08-26 09:43:21.574783
- 4 20 xxxxxx after_update 2011-08-26 09:43:21.574783
- 5 20 xxxxxx delete 2011-08-26 09:44:44.509704
- 5 record(s) selected [Fetch MetaData: 0/ms] [Fetch Data: 0/ms]
- [Executed: 11-8-26 上午09时51分21秒 ] [Execution: 16/ms]
复制代码 |
|