Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have problem to storing record in ms sql server 2008 using google ime front end use in c#

the record is stored in ????
i want to store record in marathi word.". plz help me
Posted
Updated 7-Jul-13 21:23pm
v2

1 solution

You can store it.
You have to make column having datatype nvarchar(MAX) for that
and you can insert abd retrieve marathi data from there,,,,:)

see this...:)



SQL
Create table Test_Nchar (strText nvarchar(max))

insert into Test_Nchar values ( N'बहन')
insert into Test_Nchar values ( N'Sridhar')

SELECT * FROM Test_Nchar WHERE strText LIKE N'बह%'
 
Share this answer
 
Comments
vilassagar 8-Jul-13 3:35am    
thank you
Nirav Prabtani 8-Jul-13 3:37am    
Please mark it as solved if it helped you...:)

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