views:

14

answers:

1

How can I insert Armenian string to SQL Server database.

+1  A: 

I'm no language expert but I think Armenian character set falls into the unicode under: U+0530–U+058F (From this url: http://unicode.org/versions/Unicode4.0.0/ch07.pdf)

If it's unicode, the table columns' data type need to support unicode double-byte e.g. nvarchar.

Though Armenian is not explicitly supported, see:
International Features in Microsoft SQL Server 2005

You might want to give it a try.

o.k.w