开发者

SQL Insert multilingual characters

开发者 https://www.devze.com 2023-01-31 18:54 出处:网络
I am trying to create a table in my MS SQL database for Languages. I want to store an English name of Language and a local name of language in the database.

I am trying to create a table in my MS SQL database for Languages.

I want to store an English name of Language and a local name of language in the database. i.e.

Language, Language(local)

English, English

German, Deutsch

Italian, Italiano

Japanese, 日本語

...

...

I have 279 languages that I want to import, but when I import it shows '?????' for some like japanese, Russian and arabic etc

The database Collation is Latin1_General_CI_AS.

I would also like advise on multilingual websites; if i have a database of product descriptions and I want to have translation in multiple languages, should I go for separate databases or Can I have translation in one databse? (I prefer not to duplicate data!). Anything else to make sure users are able to write comments in different languages (char encoding on web?) and can be stored in database.

开发者_运维问答Thanks to an advise I have managed to import data but, I cannot select and view correctly and therefore cannot verify if import was successful; I am getting following results on select:

SQL Insert multilingual characters


i think what you need is nvarchar

http://msdn.microsoft.com/de-de/library/ms186939.aspx

EDIT:

quering

select * from table where column = N'abc'


ASP.NET has a pretty solid infrastructure for handling localization. Much easier than rolling your own multi-language support.

http://quickstarts.asp.net/QuickStartv20/aspnet/doc/localization/localization.aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消