Inserting constant values but not form values on html form on web using tomcat
Ghazala Islam
Ranch Hand
Joined: Nov 22, 2000
Posts: 73
posted
0
Following is the piece of code which is working fine and inserting values in ms access database when I give values in quotes ( shown in code as commemted),but when I try to insert form values it throws sqlexception. Connection and PreparedStatement variables are defined at class level as pst and c, and c.setAutoCommit(false) is set at the begining of code. When I display the sql with out.println(sql) it gives correct insert statement with all form values but not inserting.Please guide. try { sql = "insert into people " + " values(" + request.getParameter("name") + "," + request.getParameter("address") + "," + request.getParameter("aqual") + "," + request.getParameter("tqual") + "," + request.getParameter("loc") + ")" ; //" values('aaa','aaa','aaa','aaa','aaa')" ;
use single quotes for Strings values. Plz try with this code and let me know If you still face any problem. sql = "insert into people " + " values('" + request.getParameter("name") + "','" + request.getParameter("address") + "','" + request.getParameter("aqual") + "','" + request.getParameter("tqual") + "','" + request.getParameter("loc") + "')" ; //" values('aaa','aaa','aaa','aaa','aaa')" ;
------------------ Amit Agrawal, New Delhi, India.