java and oracle
i have my page in html in which there are textboxes and buttons for quering.in the text box if u enter the item code,(item codes and other information present in oracle database 10g),click the required button(view stock ,update item,delete item)it should display back the result in the same webpage but in different panel.
first doubt,r these statements correct:
String query ="SELECT "+stock+" FROM " + dress +"WHERE"+ item_code=textfield.value+";";
String queryupdate ="UPDATE" + dress +" SET "+item_code,category,price,stock+"="+"WHERE"+item_code=textfield.value+";";
String querydelete ="DELETE FROM"+ dress+"WHERE"+item_code=textfield.value+";";
how do u display the result obtained in the different panel on the same webpage?(for view stock)

