I'm trying to add some persian text to my SQL Server 2005 database.
There is no problem with letters, but persian numbers (۱،۲،۳،...
) are converted to ?
...
For example, if I add this text (سلام ۱۲۳۴
) to database, there will be (سلام ؟؟؟؟
) in database/
What should I do? (for example, which collation should I use?)
I'm using Arabic_CI_AS
collation. in this list, Farsi (Persian) collation is Arabic_CI_AS
(SQL Server 2005 doesn't have Persian
collation, but 2008 has!)
Note: I can't use newer versions of SQL Server...