![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » ElevateDB Technical Support » Support Forums » ElevateDB General » View Thread |
Messages 1 to 6 of 6 total |
![]() |
Thu, Mar 8 2007 9:27 AM | Permanent Link |
Roy Lambert NLH Associates ![]() | Tim
I've created two triggers, one works one doesn't CREATE TRIGGER "biRemoveTrailingBlanks" BEFORE INSERT ON "Accounts" BEGIN SET NEWROW._ID = RTRIM(NEWROW._ID); END works (ie _ID is RTRIMed and I get a PK violation) CREATE TRIGGER "buRemoveTrailingBlanks" BEFORE UPDATE OF "_ID" ON "Accounts" BEGIN SET NEWROW._ID = RTRIM(NEWROW._ID); END doesn't work - nothing happens. I tried SET NEWROW._ID = RTRIM(OLDROW._ID); but still nothing. Spaces are left exactly where they were Roy Lambert |
Thu, Mar 8 2007 9:42 AM | Permanent Link |
Roy Lambert NLH Associates ![]() | Tim
I'm assuming that before insert means after post/save has been clicked and before the data gets to the database. Roy Lambert |
Thu, Mar 8 2007 10:22 AM | Permanent Link |
"Ole Willy Tuv" | Roy,
<< CREATE TRIGGER "buRemoveTrailingBlanks" BEFORE UPDATE OF "_ID" ON "Accounts" BEGIN SET NEWROW._ID = RTRIM(NEWROW._ID); END doesn't work - nothing happens. I tried SET NEWROW._ID = RTRIM(OLDROW._ID); but still nothing. Spaces are left exactly where they were >> For some strange reason (probably a bug), it seems that the trimming of trailing spaces doesn't work *if* the trigger is defined with the OF <UpdateColumns> clause. Try to define your trigger as follows: CREATE TRIGGER "buRemoveTrailingBlanks" BEFORE UPDATE ON "Accounts" BEGIN SET NEWROW._ID = RTRIM(NEWROW._ID); END Ole Willy Tuv |
Thu, Mar 8 2007 11:01 AM | Permanent Link |
Roy Lambert NLH Associates ![]() | Ole
Brilliant. I never would have thought of that. In fact I had to stare at your code for a couple of minutes before I spotted the difference. In case you hadn't guessed you were right, it worked. Roy Lambert |
Thu, Mar 8 2007 12:10 PM | Permanent Link |
"Ole Willy Tuv" | Roy,
<< In case you hadn't guessed you were right, it worked. >> That's good. Your original trigger should have worked also, of course. AFAICS, the problem/bug is that a trigger defined with OF <UpdateColumns> doesn't fire at all. Ole Willy Tuv |
Thu, Mar 8 2007 4:55 PM | Permanent Link |
Tim Young [Elevate Software] Elevate Software, Inc. ![]() | Ole,
<< Your original trigger should have worked also, of course. AFAICS, the problem/bug is that a trigger defined with OF <UpdateColumns> doesn't fire at all. >> Yep, a flag isn't getting set properly when the modified column values are examined, and they are skipped. -- Tim Young Elevate Software www.elevatesoft.com |
This web page was last updated on Thursday, July 10, 2025 at 01:54 PM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |