Quantcast
Channel: Techie Shah
Viewing all articles
Browse latest Browse all 25

How to store unicode characters ( α, β,γ) in SQL Server

$
0
0

 Problem:


If you have defined the data type of your database column as the following character strings then you will not be able to save the Unicode characters.

a) char

b) varchar

c) text


Solution:

Change the data type of your database column to the following Unicode character strings


a) nchar

b) nvarchar

c) ntext



Viewing all articles
Browse latest Browse all 25

Trending Articles