Subject | RE: [firebird-support] Some feedback of my 2.5 experience |
---|---|
Author | Maya Opperman |
Post date | 2011-06-03T08:50:22Z |
>>And this on insertion of new support incidents:Thanks everyone, I think this just confirms the code never gets executed. I will correct it ASAP. I don't think it will affect the FB2.5 hanging issue though, as it's not inserting into that table that's hanging, it's the other table.
>> IF (NEW.ID IS NULL) THEN
>> NEW.ID = GEN_ID(GEN_CUSTOMERINCIDENTS_ID,0);
>Should be
>IF (NEW.ID IS NULL) THEN
> NEW.ID = GEN_ID(GEN_CUSTOMERINCIDENTS_ID,1);
Maya