| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: One True i18n Table
>> I am wondering how others have approached this. <<
If we are talking about the same thing, use SQLSTATE and attach various languages to each code in a single table:
CREATE TABLE ErrorMessages
(err_msg_code CHAR(5) NOT NULL PRIMARY KEY,
english_err CHAR (25) NOT NULL ...
french_err NCHAR (25) NOT NULL ..
...
esperanto NCHAR (25) NOT NULL ..);
Received on Thu Oct 14 2004 - 21:39:25 CDT
![]() |
![]() |