I want to develop a dictionary that translates from egnlish to amharic and amharic to english. i am using sql server database and vb.net programing language.
create table mytable( id number unique, englishwords varchar2(100), amharicwords varchar2(100));
let me insert some values.
insert into mytable values(1, 'well', 'turu');
insert into mytable values(2,'come','na');
insert into mytable values(3,'you', 'ante');
insert into mytable values(4, 'are', 'nachew');
then if i want to know the meaning of english word 'well' in amharic,
i just type it in the textbox then i will get its corresponding meaning in amharic that is 'turu'.
but now my problem is ,if i write multiple words at the same time,
for instance, well come, then i expect to see the meaning of this that is 'turu na'. so how can i do this?
your help is crucial!
2007-03-05
18:19:53
·
5 answers
·
asked by
Nebrom
1