Subject | Re: [firebird-support] Is there NOW functionality? |
---|---|
Author | Helen Borrie |
Post date | 2006-06-17T14:11:54Z |
At 11:54 PM 17/06/2006, you wrote:
d = CAST('now' as timestamp);
> > I need a currrent date in SP .../* or an exception */
>
>create procedure myproc
>as
> declare variable d timestamp;
>begin
>...
> d = 'now'; /* And you receive current date time */
d = CAST('now' as timestamp);
>..../heLen
>end