Re: Transaction vs. Savepoints

From: James Long <pgsql-novice(at)museum(dot)rain(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Transaction vs. Savepoints
Date: 2007-02-09 19:18:03
Message-ID: 20070209191803.GA24262@ns.umpquanet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Fri, Feb 09, 2007 at 11:21:59AM -0500, Tom Lane wrote:
>
> Usually the best approach is to fetch the data without acquiring any
> lock, allow the interactive editing to happen outside a transaction,
> then when the user hits SAVE, perform a transaction that locks the
> row(s), checks for conflicting changes, and commits if no conflict.

Might you please expand on how the application could check for
conflicting changes? Would this be simply fetching the record
again, and comparing to the previously-fetched version, to see
if the record is still as it was when the user started editing?
Something more sophisticated?

Thank you for your time.

Jim

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Daniel T. Staal 2007-02-09 19:58:19 Re: Transaction vs. Savepoints
Previous Message Tom Lane 2007-02-09 16:42:38 Re: relation 12345 is still open