📄 test.jsp
字号:
<%@ include file="conn.jsp"%>
<%String sql;
sql="select * from scott.friendimg where id=41";
ResultSet rst=stmt.executeQuery(sql);
if(rst.next()) {
out.print("update scott.friendimg set img='"+rst.getString("img")+"' where id='4'");
//stmt.executeUpdate("update scott.friendimg set img='"+rst.getString("img")+"' where id='4'");
//stmt.executeUpdate("update scott.friendimg set img='"+rst.getString("img")+"' where id='21'");
//stmt.executeUpdate("update scott.friendimg set img='"+rs1.getString("img")+"'");
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -