Subject Re: [firebird-support] Date stamp entry
Author Helen Borrie
At 09:59 PM 14/03/2004 -0500, you wrote:
>Hello - newbie question ...
>
>How to : generate automatic datestamp entry on each new record in
>firebird ?

CREATE TRIGGER BI_YOURTABLE FOR YOURTABLE
ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
NEW.YOURDATESTAMP = CURRENT_TIMESTAMP;
END


/heLen