Hi.
 
http://tracker.firebirdsql.org/browse/CORE-6005
I do not talk about problem itself but think about new feature.
 
 
Is this stable cursor a real cursor on which we can work and we can have some 
system name for it?
e.g. name "RDB$UPDATE_RECORDS"
What i think about is provide something like this 
 
create trigger xxx for test_update 
active after update RECORDS position 0
as 
begin 
  while (1 = 1) do
         begin
           fetch RDB$UPDATE_RECORDS into :rname;
           if (row_count = 0) then
             leave;
         end
end
 
Is this posssible? I can create ticket for it but this depend of the answer.
Whe can than have triggers for particular records as is now but also we can 
have trigger for all modified records as a whole.
 
regards,
Karol Bieniaszewski
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to