Subject | Re: Getting Milliseconds |
---|---|
Author | Adam |
Post date | 2007-05-23T23:57:37Z |
--- In firebird-support@yahoogroups.com, "robertgilland"
<robert_gilland@...> wrote:
declare external function getExactTimestamp
timestamp returns parameter 1
entry_point 'getExactTimestamp' module_name 'fbudf';
select getExactTimestamp()
from rdb$database;
Adam
<robert_gilland@...> wrote:
>(Windows only)
> I am testing time critical stored procedures.
> But the CURRENT_TIME token does not output milliseconds
>
> I am using Firebird 2
>
> select CURRENT_TIME
> from rdb$database
>
> returns
>
> 24/5/2007 09:22:000
>
> always.
>
> How can I get the milliseconds?
declare external function getExactTimestamp
timestamp returns parameter 1
entry_point 'getExactTimestamp' module_name 'fbudf';
select getExactTimestamp()
from rdb$database;
Adam