We have a trilingual system at work, English, Greek and Russian. I have a problem with Russian when I update some fields in my database. If I use the update request to update the default form of the field in English, I get '??????????' instead of Russian characters. If I update them manually, it will show correctly. Help!
step 1 : Use DATATYPE as NVARCHAR. Step 2 : put N before string your are inserting in your file Example insert into table( col1,col2) values (N'string1',N'string2')
will solve your problem
Source: https://habr.com/ru/post/1754937/More articles:A good way to load multiple lat / long points from a database into google map markers? - javascriptShorter calls / names without using definitions - c ++is there any way to pass binary content using javascript - javascriptДоступ к файлам cookie сеанса с помощью NSHTTPCookieStorage - iphoneJSF examples - javaВытягивание в сеансе Magento Информация не работает - magentoJava Script: mousestop event - javascriptVisual Studio Error - Error writing project file. Class not registered - visual-studioКак отображать две страницы на одной странице прокрутки с масштабированием из PDF? - pdfGenerate LINQ DataContext from class XML, XSD or C # - c #All Articles