#120 : Support for alphanumeric account

This commit is contained in:
Dany De Bontridder 2011-10-22 20:17:50 +00:00
parent fea4eaff12
commit 092e22f0e6
13 changed files with 365 additions and 78 deletions

9
sql/trigger.tmp_pcmn.sql Normal file
View file

@ -0,0 +1,9 @@
-- Trigger: t_tmp_pcm_alphanum_ins_upd on tmp_pcmn
-- DROP TRIGGER t_tmp_pcm_alphanum_ins_upd ON tmp_pcmn;
CREATE TRIGGER t_tmp_pcm_alphanum_ins_upd
BEFORE INSERT OR UPDATE
ON tmp_pcmn
FOR EACH ROW
EXECUTE PROCEDURE comptaproc.tmp_pcmn_alphanum_ins_upd();