meta data for this page
  •  

F_ENCODETIME

compatibility to GrUDF

Entrypoint encodetime compatible with UTF-8

F_ENCODETIMENULL

function from adhoc

Entrypoint encodetimenull compatible with UTF-8


Inputs/Outputs

   Input     INTEGER     hours
             INTEGER     minutes
             INTEGER     seconds
   Output    TIME        time build from parameters

Syntax

   F_ENCODETIMENULL is able to return NULL
   TestSQL
   SELECT '09:45:53' AS ISCORRECT, F_ENCODETIME(9, 45, 53) FROM RDB$DATABASE;
   SELECT NULL AS ISCORRECT, F_ENCODETIMENULL(NULL, NULL, NULL) FROM RDB$DATABASE;