ORA_NLS.RIGHT_TO_LEFT
built-in functionThis function returns true or false, depending on whether the writing direction of the current language is "right-to-left".
FUNCTION ORA_NLS.RIGHT_TO_LEFT
RETURN BOOLEAN;
TRUE
or FALSE
.
/*
** Verify that the language is a right-to-left language
*/
rtl := ORA_NLS.RIGHT_TO_LEFT;
IF rtl = FALSE
TEXT_IO.PUT (langinfo.txt, 'This is not a right to left
language.');
ENDIF;
About the ORA_NLS
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.