Click here to Skip to main content
15,900,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a sql table with product details. This table was exported frm Microsoft access. One column of the table is with Arabic description. But that description is not displaying in my database table. It shows "?cE" like this instead of Arabic.
Posted

1 solution

Use nvarchar or ntext.
Here is a solution - SQL SERVER- How to insert multilingual data in a Table[^].
 
Share this answer
 
Comments
Member 11357862 18-Jan-15 9:54am    
I have added nvarchar, but can't view the Arabic data. In my column already have Arabic script. but it shows as ?CE. cannot able to view it. For inserting new data in Arabic format I can add it by N' Arabic script'. Its working. But I already have some datas in database in Arabic scripts. Can't able to view it.
Member 11357862 18-Jan-15 10:09am    
alter TABLE Mycode12 alter column adescrip nvarchar(max) COLLATE Arabic_BIN
I have used this query, now it shows as ßÑÓì ÍãÇã ÈÚÌáÇÊ

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900