I want to store a balkan surname in my sql server db but when I try and update a recordes using the following SQL:
update User_Data
set name = 'Kramarić'
where User_PKID= 3047
However when I query the db with:
select name from User_Data where User_PKID = 3047
it returns:
Kramaric
Any idea on how I can get it to store it in its original form. I need it as such as I do a string comparison on my server code with data coming from a website and if the 'ć' isn't the same it fails.