test.jsp
来自「JSP+ORACLE网站开发实例(下).rar」· JSP 代码 · 共 14 行
JSP
14 行
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?