Home Answers Viewqa JDBC error!!!!!!!!!

 
 


anjuvijayan
error!!!!!!!!!
1 Answer(s)      2 years and 4 months ago
Posted in : JDBC

st=con.createStatement(); int a=Integer.parseInt(txttrno.getText()); String b=txttname.getText(); String c=txtfrom.getText(); String d=txtto.getText(); String e=txtname.getText(); String f=txtgen.getText(); String g=txtadd.getText(); int h=Integer.parseInt(txtphone.getText());

rs=st.executeUpdate("insert into railway values("+a+","'+b+"',"'+c+"',"'+d+"',"'+e+"',"'+f+"',"'+g+","+h+")");

plz someone help me in removing errors in the above line....

View Answers

January 25, 2011 at 4:58 PM


Hi Friend,

The problem lies in your query.We have modified it.

Here is the modified code:

rs=st.executeUpdate("insert into railway values("+a+",'"+b+"','"+c+"','"+d+"','"+e+"','"+f+"','"+g+"',"+h+")");

Thanks









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.