Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How to enter marathi characters in textbox in windows application and save it in database.I was trying to do it by changing font of textbox but i get only enetered text as marathi character but when am trying to save it in database it converted into english characters..
I dont want to use google tranasalator because when we set language language in it,then it applies to whole system.
Please help me
Posted
Comments
Sergey Alexandrovich Kryukov 2-Apr-13 13:21pm    
Marathi? Why I can enter it and you cannot? I never install anything specially, just use "us-en" culture... Marathi is popular enough to be supported by all modern systems by default, with major Unicode UTFs.
—SA
Member 9849488 2-Apr-13 13:38pm    
I have used unicode datatypes

1 solution

You need to use Unicode SQL data types, such as nchar, nvarchar or ntext:
http://msdn.microsoft.com/en-us/library/ms191200%28v=sql.105%29.aspx[^].

You need to learn at least basics of Unicode; it looks like you have a very vague idea of how it works, if any idea at all:
http://en.wikipedia.org/wiki/Unicode[^],
http://www.unicode.org[^],
http://www.unicode.org/standard/principles.html[^]
http://www.unicode.org/faq/utf_bom.html[^].

—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