SS does not save security data

I might be missing something but security system dialogs don't save data to firebird database I'm using.



I've placed normal data components in a datamodule, the dialogs appear fine both design time and runtime.



No error messages are created except on inserting a row with id, it requires a value for that field. I've placed default 0 for inserts and FB trigger handles that, so it shouldn't be a problem.



-Pekka

Are you using auto inc. field types for Users.UserID and UserAccess.ID ?

Yes, trigger increments the id.



' IF ((NEW.GROUP_ID IS NULL) or (NEW.GROUP_ID = 0)) THEN

      NEW.GROUP_ID = GEN_ID(GROUPS_GROUP_ID_GEN, 1);'



and client datasets beforepost: cdsuserGroup_id.value := 0 if dataset state is dsInsert.



but edit changes do not occur either.

As I don't see the complete setup & settings, it is hard to judge what is wrong.
Did you compare the setup with our sample app?