A script-enabled browser is required for this page to function properly.

ORA_NLS.Modified_Date_Fmt

Description

Returns true or false, depending on whether the date format has been modified.

Syntax


FUNCTION Ora_Nls.Modified_Date_Fmt
RETURN BOOLEAN;

Returns

TRUE or FALSE.

Example


 /*
** Determine whether or not the date format has been 
** modified
*/
modify := Ora_Nls.Modified_Date_Fmt;
IF modify = TRUE
  Text_IO.Putf (langinfo.txt, 'The date format
    has been modified.');
ENDIF;