Subject Re: [firebird-support] Is there NOW functionality?
Author Helen Borrie
At 11:54 PM 17/06/2006, you wrote:

> > I need a currrent date in SP ...
>
>create procedure myproc
>as
> declare variable d timestamp;
>begin
>...
> d = 'now'; /* And you receive current date time */

/* or an exception */

d = CAST('now' as timestamp);

>...
>end

./heLen