Subject Re: Design problem
Author Alexander V.Nevsky
--- In firebird-support@yahoogroups.com, "Dimitry Sibiryakov"
> Only report transactions that need serializable read. Update/insert
> transactions may be (and should be) "read commited".

Dimitry, I prefer to not so categorical on this. I can suggest about
inserts if it's triggers don't make non-incremental updates of another
tables, but about updates - it depends. If we make incremental update
like "Set Column=Column+:Param" - yes. If "Set Column=:Param" - I
prefer to get lock conflict if record was changed and commited since I
started transaction and use concurrency.

Best regards, Alexander.