jsp更新查询

时间:2016-01-04 14:06:45

标签: html jsp

请帮帮我...我只想用jsp进行编辑操作。如果我按下编辑按钮我只想编辑当前行数据...如何将行数据设置到文本框...如何将当前行与文本框匹配

mysql.query(query)

Employeeupdate.html

delimiter //

create trigger TBD_UsefulResources before delete
on UsefulResources for each row
begin
    Update SystemCycle set CurrentCycle=CurrentCycle+1;

    INSERT INTO DeletedPhysically (TableName, PKName, PKValue, DelAtRowCycle, RowCycle, Created)
    VALUES ("UsefulResources", "Ufr_GUID", OLD.Ufr_GUID, (Select CurrentCycle From `SystemCycle` where Syc_ID=1), (Select CurrentCycle From `SystemCycle` where Syc_ID=1), now());
end;
//

delimiter ;

1 个答案:

答案 0 :(得分:0)

将HTML文件移动到jsp中,然后将文本字段填充为以下

  <td><b>Employee Id:</b></td>
  <td><input type="text" name="employeeid" value=<%=request.getParameter("employeeid")%>></td> //etc

但请注意,jsp文件(&lt;%=%&gt;)中的java表达式被认为是不好的做法,但如果它只是一个简单的页面就可以了。

你真的应该创建一个servlet并在那里移动你的业务逻辑(数据库访问等)。