Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

multi-language translations

Status
Not open for further replies.

screenmates

Programmer
Jul 18, 2005
2
US
For creating a multi-langauge app, which is the best appraoch:

a. add a languageId column to primray key
b. add multiple descrirption columns for each language

eg:

original table:
categoryId
description

primary-key approach:
categoryId
languageId
description

multiple description column approach:
categoryId
description_en
description_es
description_ar
description_fr
description_de
description_jp
description_cn
......
...

any better approachs? can give teh design for transalation tables?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top