ATCH#22012

svn path=/Database/trunk/; revision=11032
This commit is contained in:
Maykel Geerdink
2012-01-26 07:10:58 +00:00
parent 909ce82036
commit bbbf4a0fcd
6 changed files with 131 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
#ifdef PRS
/* PRS_TRI.SRC
* $Revision: 89 $
* $Modtime: 2-01-12 15:04 $
* $Revision: 90 $
* $Modtime: 18-01-12 8:54 $
*/
#include "alg\algsql.h"
@@ -718,6 +718,7 @@ BEGIN
UPDATE_PRIMARY_KEY(prs_kostencombinatie_key, prs_s_prs_kostencombinatie_key);
END;
/
CREATE_TRIGGER(prs_t_prs_staffel_B_IU)
BEFORE INSERT OR UPDATE ON prs_staffel
FOR EACH ROW
@@ -726,6 +727,14 @@ BEGIN
END;
/
REGISTERRUN('$Workfile: PRS_TRI.SRC $','$Revision: 89 $')
CREATE_TRIGGER(prs_t_prs_perslid_inzet_B_IU)
BEFORE INSERT OR UPDATE ON prs_perslid_inzetbaar
FOR EACH ROW
BEGIN
UPDATE_PRIMARY_KEY(prs_perslid_inzetbaar_key, prs_s_prs_perslid_inzet_key);
END;
/
REGISTERRUN('$Workfile: PRS_TRI.SRC $','$Revision: 90 $')
#endif