create table table1(id number unique, f_name varchar2(50),l_name varchar2(50));
Insert into table1 values(1,'posh',' martin')
Insert into table1 values(2,'billgate','money ')
Insert into table1 values(3'game',' football')
Insert into table1 values(4,'england','fans ')
Insert into table1 values(5,'america',' korea')
now if the value of the textbox1.text=billgate america
then i will expect to get "money korea"
if textbox1.text=posh game england
then i will expect to retrieve "martin football fans"
so on ....
so how could i do such retrieving of data?
i am using vb.net and sql server to do this
so you can show me any method you know or you
think that this problem can solve.
with billions thanks!
2007-03-12
06:37:03
·
4 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design