Sopolin
Sopolin

Reputation: 576

Can MS SQL Server 2000 handle Chinese text encoded with Unicode?

Now, I am using Ms sql server 2000 and I want to store my data as the unicode for chinese font. But I don't know it can store this type or not? If not, could anybody guide me?

Thanks, Sopolin

Upvotes: 2

Views: 637

Answers (1)

Paul Sasik
Paul Sasik

Reputation: 81509

The n in the nchar and nvarchar data types in Sql Server including 2k stands for Unicode. Yes you can.

Here's a few articles to look at for getting started: MSDN, CodeProject

Upvotes: 5

Related Questions