Re: LOCK TABLE

From: "K Parker" <kparker(at)eudoramail(dot)com>
To: pgsql-general(at)hub(dot)org
Subject: Re: LOCK TABLE
Date: 2000-09-17 16:42:44
Message-ID: IMEEMDKACADKBAAA@shared1-mail.whowhere.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Sure you can lock a single row:

BEGIN;
SELECT .... FOR UPDATE ... ;
-- app messes with filesystem...
-- may or may not actually update the row
COMMIT;

Won't this do what you need?

Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at http://www.eudoramail.com

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Cristóvão Dalla Costa 2000-09-17 18:07:28 Transactions aborting when a query fails
Previous Message Horst Herb 2000-09-17 14:55:55 trigger inheritance