Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to Create a windows based application, which has to support Tamil words.

Is it possible to save Tamil letters in Sql Server?
Posted
v2
Comments
Richard MacCutchan 13-Dec-12 5:27am    
If the Tamil characters can be represented in Unicode then you can use them in your program. Try a Google search to see how other developers may have solved the problem.

Hi,
Use nvarchar data type insted of varchar data type.
 
Share this answer
 
Please check the answers in How do store Tamil letters in SQL Server 2005?[^].
You have to define columns with DataType NVarchar(max), so that it will accept all type of characters in any language.
 
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