I\'m using the following code:
INSERT INTO tForeignLanguage ([Name]) VALUES (\'Араб\')
this value inserted like this \'????\'
How d
The following should work, N indicates a "Unicode constant string" in MSSQL:
N
INSERT INTO tForeignLanguage ([Name]) VALUES (N'Араб')