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

I want to create a software using C#.NET which is a Spell Checker for Bangla Language. For this, I need to build a database which will store the 'Bangla' words and by programming, it will check the spelling.

So how can I do it?
Posted
Updated 7-Mar-11 7:44am
v2
Comments
Toli Cuturicu 7-Mar-11 15:16pm    
Do you mean "Bengali"?
kibria06cse 8-Mar-11 13:30pm    
Yes I mean "Bengali".

Make the relevant columns of type NVarChar and when you enter data be sure to precede it with an 'N', something like this:
SQL
SET BanglaWord = N'aBanglaWord'
 
Share this answer
 
1. Make sure your database is Unicode capable and aware.
2. Create a column as VARCHAR (64) CHARACTER SET UTF8 or whatever syntax is appropriate for your database.
3. Add data to your column normally, in the usual way.
 
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