Re: idiom for interactive client applications. - Mailing list pgsql-novice

From Richard Broersma Jr
Subject Re: idiom for interactive client applications.
Date
Msg-id 250828.31397.qm@web31801.mail.mud.yahoo.com
Whole thread Raw
In response to idiom for interactive client applications.  (syan tan <kittylitter@people.net.au>)
List pgsql-novice
--- syan tan <kittylitter@people.net.au> wrote:
> What other ways are there of doing such an app?

The two ways that I know of are:

BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;

--if the tuple was modified by another transaction, this transaction will fail on commit.

SELECT FOR UPDATE... -- pre-lock the tuple of interest from other commits.

Regards,
Richard Broersma Jr.

pgsql-novice by date:

Previous
From: syan tan
Date:
Subject: idiom for interactive client applications.
Next
From: Syan Tan
Date:
Subject: Re: idiom for interactive client applications.