checking update/insert return

Поиск
Список
Период
Сортировка
От Marcus Andree S. Magalhaes
Тема checking update/insert return
Дата
Msg-id 55788.200.161.200.85.1073336049.squirrel@webmail.webnow.com.br
обсуждение исходный текст
Ответы Re: checking update/insert return  (Bruno LEVEQUE <bruno.leveque@net6d.com>)
Re: checking update/insert return  (Oliver Elphick <olly@lfix.co.uk>)
Список pgsql-novice
Dear list,

Is there any way to check a successful insertion or update on a table
in plpgsql?

We have a highly concurrent system here, and we want to return a valid
and unique ID to the caller, like the following pseudo code (no flames,
didatic use only ;-):

while (true)
 found = select count (*) from mytable where id = $id
 if (found == 0) /* non existent id */
     insert into mytable (id. name) values ($id, $name)
     /* someone in parallel could have inserted the same id before
        so we need to check if this insertion was OK, but how??? */
     if (INSERTED) return $id /* we inserted our id with success */
     else $id = $id + 1 /* someone has used this id, increment it
                           and try again */
     end if
 else
     $id = $id + 1 /*id already exists*/
 end if
end while

My question is, is there any postgres internal boolean function
that somewhat resembles what I described here as "INSERTED" ???

I did some research and found an internal function called FOUND, but
it seems to work only with select.

In short, how to determine if an insert (or update) clause has
ended with success? The backend seems to indicate this, by a INSERT
return...

Any help is welcome

Thanks.




В списке pgsql-novice по дате отправления:

Предыдущее
От: Andreas
Дата:
Сообщение: Re: postgresql in windows
Следующее
От: Bruno LEVEQUE
Дата:
Сообщение: Re: checking update/insert return