Characters with accents not interpreted correctly during update on sql server -
i'm trying update records romanian text have characters 'ă, ț, î'
they working fine if copy text manually using 'edit rows' option on sql management studio when write update statement ă gets interpreted a , ț gets interpreted ?
however, î interpreted correctly.
i've set column data type nvarchar(255) , current collation set database default. i've tried romanian still no luck.
below example query.
update dbo.tbl_romanian_test set title = 'ă ț î' id = 1
eventually want done app using entity framework. appreciate help. thanks
try add n
before 'ă ț î' in query trying update nvarchar
column
update dbo.tbl_romanian_test set title = n'ă ț î' id = 1
Comments
Post a Comment