Pages

Men

rh

7/07/2012

Which are the Important Points to Note when Multilanguage Data is Stored in a Table?

There are two things to keep in mind while storing unicode data. First, the column must be of unicode data type (nchar, nvarchar, ntext). Second, the value must be prefixed with N while insertion. 

For example,
INSERT INTO table (Telugu_col) values (N’Telugu data’)

No comments :

Post a Comment