OpenEdge database support internationalization . It means you can build application for non-english language/region and perform required operations. While working with non-english languages, you need to use appropriate language setting to perform the operation and do the character processing correctly.
You can use ABL query to test the setting from your client. Here is the ABL query below-
MESSAGE
"Database = " DBCODEPAGE(1)
SKIP
"Collation = " DBCOLLATION(1)
SKIP
"-cpinternal =
" SESSION:CPINTERNAL
SKIP
"-cpstream = " SESSION:CPSTREAM SKIP
"-cpcoll = " SESSION:CPCOLL SKIP
VIEW-AS
ALERT-BOX.
Internationalization setting details for non-unicode database with default code page ISO8859-1 |
Internationalization setting details for unicode database with code page UTF-8 |
No comments:
Post a Comment