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