Locking rows - Mailing list pgsql-general

From gabriele zelasco
Subject Locking rows
Date
Msg-id 000801c56223$5405a280$f3501897@amdykzpbht0xj0
Whole thread Raw
Responses Re: Locking rows  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Hi.I'm using postgresql 8.0.3 under win2000 and developing with VS2003 (npgsql net provider).
I would like to start a transaction with a sql function.
When user press "edit" button on my form, i would lock the current row.
After user has modified data on form, pressing "save" button I would save the modified row by sql update function and so commit.
Well.The update function works fine.
My problem is to lock the current row.
My code is something like:

CREATE OR REPLACE FUNCTION "public"."new_function" () RETURNS SETOF "public"."table" AS
$body$
begin;
select * from table where field = 'value' for update;
$body$
LANGUAGE 'sql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;


But I get :

ERROR , BEGIN IS NOT ALLOWED IN SQL FUNCTION

What's wrong?
Please tell me if it's a syntax problem
maybe have I to use pgsql ?
How can I lock row in pgsql ?
Thanks in advance.

pgsql-general by date:

Previous
From: Hrishikesh Deshmukh
Date:
Subject: Just a crazy idea!
Next
From: "daniellewis"
Date:
Subject: postgresql, pgaccess and tcl/tk (in X11)