Re: User and Timestamps

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: User and Timestamps
Дата
Msg-id 20030525092101.R35205-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на User and Timestamps  (google@itrex.de (Simon Heinrich))
Список pgsql-general
On 22 May 2003, Simon Heinrich wrote:

> Hi NG,
>
> working with postgres is very intresting...for a newby like me a big
> big playground and so I found a nother toy which i like to handle :)
>
> Rules or Triggers + Functions
>
> In all of the maintable in my DB I have the following Fields:
>
> created      timestamptz
> createdby    vchar(15)
> modified     timestamptz
> modifiedby   vchar(15)
>
> Now I like to setup a mechanismus which tke care of inserts and
> updates. Everytime an insert is calld created shuld stamped whith the
> current loggedin user and createdby whith Current_Timestamp....Same
> for update whith modifed and modifedby.
>
> I tried to set up a rule but it wont work because I find no way to
> identify the newly inserted row :(

You'll probably be happier with a before trigger than a rule.  The trigger
functions should be pretty simple in plpgsql.


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

Предыдущее
От: Holger Klawitter
Дата:
Сообщение: Re: latin1 -> unicode
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Transaction Triggers!