Tell me how you can customize fonts ?. The problem is this: from one form window the data is sent to the server, and on the same form, but only in another window this data is output from the server like this "?????????" Armenian letters, Microsoft SQL Server 2008 server.

Maybe you need to configure the fonts in the server?

  • It is probably a matter of the collation of the column where the data is written. - msi
  • Or maybe it happens from the computer, with Russian and English letters work normally, and the place with question marks is displayed in Armenian letters. - Hamo
  • Why guess. What is the collation? - msi
  • Collation costs Cyrillic_General_CI_AS - Hamo
  • This is the answer to the question. Cyrillic means Cyrillic, and as far as I understand, you need an Armenian. - msi

1 answer 1

First, check the type of data that you have stored on the server - unicode or not. look at the properties of the table - the data type for the desired cell is set to nvarchar, nchar (unicode) or varchar, char (not unicode). Then try to select something from the table by a simple query through Management Studio - the data is returned, or question marks.

  • I had nvarchar, changed to varchar, there is no difference anyway, it returns question marks. - Hamo
  • "Then try to select something from the table by a simple query through Management Studio - the data is returned, or question marks." - minamoto
  • Or maybe there is such a setting in Management, where could the encoding be configured? - Hamo
  • You try to make a sample from the table, and see what happens. - minamoto
  • Chose, no change? - Hamo