0
請解決更新查詢的查詢問題(使用JSP)更新使用JSP
// ResultSet是ResultSet對象&正常工作 //更正了RSMD的ResultSetMetaData對象&獲取數據正確
for(int i=1;resultset.next();i++)
{
update_query="UPDATE DEMO_TABLE SET ";
for(int j=1;j<=rsmd.getColumnCount();j++)
{
temp_str=request.getParameter(rsmd.getColumnName(j)+i); // i am having id of textboxes as of columnname1,columnname2(eg. S_NO1, NAME1) using this
if(j==rsmd.getColumnCount())
{
update_query+=rsmd.getColumnName(j)+"=\'"+temp_str+"\'" ;//not working
//WORKING update_query+=rsmd.getColumnName(j)+"=\""+ temp_str+"\"" ;
}
else
{
update_query+=rsmd.getColumnName(j)+ "=\'"+ temp_str+"\' ,";//not working
//WORKING update_query+=rsmd.getColumnName(j)+ "=\"" + temp_str + "\" ,";
}
}
.
.
.
.
remaining update query statement with where clause...
please help...it's not working i.e. it's not inserting single quotes in update_query string