I am using a SQL Server database and I need to save some texts written using the Cyrillic alphabet.
I use Microsoft SQL Server Management Studio to enter, view and manage data. But when I insert data like
Insert into EBook (TitleID, Title, ContentFile) values (N'', N' ', N'- ');
and then do SELECT, I see only ???? instead of texts.
I donβt even know if the data was saved incorrectly, or if Studio cannot display it correctly. How can this be fixed?
source share