The problem is as follows. I create a base
create database MyTestDB on primary (name = MyTestDB, filename = 'd:\MyTestDB.mdf', size = 12MB, maxsize = 20MB, filegrowth = 2MB ) LOG ON (name = MyTestDB_Log, filename = 'd:\\MyTestDB_Log.ldf', size = 2MB, maxsize = 12MB, filegrowth = 1MB) COLLATE Latin1_General_CI_AI; Then I create a tablet.
CREATE TABLE Students( ID int IDENTITY(1,1) NOT NULL CONSTRAINT PK_Students PRIMARY KEY, Name nvarchar(30) NOT NULL ) Well, actually fill it (text fields - Cyrillic). As a result, all that is Cyrillic in this form ?????
Tell me what could be the problem ? Somewhere with the coding nakosyachil? Yes, like universal.
'строка'instead ofN'строка'set? - PashaPash ♦