Connecting MS_Access
Hai,
I'm using MS-Access with Servlets.When I try to
link more than one table thro' a query(as we do in Oracle),it is not responding.It just selects the datas from the primary table alone.Why................CAN'T WE
WRITE A QUERY TO RELATE MORE THAN 1 TABLE.....OR SHOULD WE CREATE MORE THAN 1 RESULTSETS.
HERE IS MY QUERY:
rs=st.executeQuery("select table1.no,name,sal from table1,table2
whereno=' " + req.getParameter("no")+"' ");
where rs=resultset;
st=statement;
table1=primarytable;
table2=childtable;
req.getParameter("no")->where no is the textbox name through which I'm getting all those related datas.
can anyone help me...........
Thanks in advance.
Subha.

