Re: Internationalization of web site
Posted By:
Markus_Schneider
Posted On:
Monday, August 27, 2001 02:39 AM
You can change the NLS_LANG with ALTER SESSION SET NLS_LANGUAGE = ... (Oracle8i SQL Reference). IMHO you have to use DBMS_SESSION.SET_NLS.. (Oracle8i Supplied Packages Reference).
Re: Internationalization of web site
Posted By:
Anonymous
Posted On:
Wednesday, August 22, 2001 01:09 PM
You can get the default encoding from system properties, that's basic to any java program. Note that it may not be the same as the DBMS encoding for the specific table. It is the driver's job to convert from the DBMS encoding to Unicode and back. The driver finds out from the DBMS what the encoding is. This is also basic, in that Java, without specific intervention, always uses Unicode. These issues are discussed in several places in the FAQ. You should probably also review the I18N FAQ.