Click here to Skip to main content
15,889,034 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I need to insert non-English (HINDI) data into sql-server database table using OpenXML in stored procedure

How can i insert unicode data from sql-server using Open XML...???




Thank you,
Posted
Comments
ZurdoDev 29-Jul-13 9:38am    
Make sure your columns are NVARCHAR and then insert it. Where are you stuck?

1 solution

Use data types supporting Unicode: nchar, nvarchar, ntext; don't use corresponding data types not supporting Unicode: char, varchar, and text.

—SA
 
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