
October 17th, 2000, 01:22 AM
|
|
Junior Member
|
|
Join Date: Aug 2000
Location: chennai, tamil nadu, INDIA
Posts: 27

Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
String fexp="";
fexp=request.getParameter("fexpcujob");
String ftq="";
ftq=request.getparameter("ftechquali");
here jobreg is the table name and expcujob, quali is the field name.
String query = "SELECT * FROM jobreg WHERE jobreg.expcujob=" + fexp;
this is working for only one search condition.
if i give two search condition, the below query is not working.
String str_query2 = "SELECT * FROM jobreg WHERE jobreg.expcujob && jobreg.quali=" + fexp ,+ ftq;
kindly send the immediate reply.
|