Click here to Skip to main content
15,894,252 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
when update data by command in vb.net 2005 the data in sq l database looks like : ????
Posted
Comments
chandanadhikari 6-Apr-12 23:36pm    
hi,
this might be happening because of conversion of data from Unicode(arabic) to ansi format when stored on sql database .
chandanadhikari 7-Apr-12 0:07am    
sorry for my mistake, its actually ASCII (and not ansi)...you need to check if the database you are using supports unicode or not.In case it supports Unicode ,then you should check what changes you should do (in code or otherwise), to take advantage of the Unicode support .

1 solution

Probably because you have VARCHAR as your data type. Try using NVARCHAR[^]
 
Share this answer
 

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