Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> comp.databases.theory -> Re: One True i18n Table

Re: One True i18n Table

From: --CELKO-- <jcelko212_at_earthlink.net>
Date: 14 Oct 2004 19:39:25 -0700
Message-ID: <18c7b3c2.0410141839.357a7928@posting.google.com>


>> 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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US