• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    jsp与sql语句的混合使用示例
    话不多说,直接上例子
    insert
    复制代码 代码如下:

    String sql="insert into allorder values('" + orderid + "','" + bookid +"','" + amount + "','" + username + "')";
    int result=stmt.executeUpdate(sql);
    if(result==1)
    response.sendRedirect("index.jsp");
    else
    response.sendRedirect("detail.jsp");


    delete
    复制代码 代码如下:

    String condition="delete from allorder where id='"+ orderid+ "'";
    int result=stmt.executeUpdate(condition);

    if(result==1)
    response.sendRedirect("index.jsp");
    else
    out.println("shopCar.jsp");


    update
    复制代码 代码如下:

    与delete,insert差不多

    select
    [code]
    %
    while (rs.next()){
    String amount=rs.getString("amount");
    String orderid=rs.getString("id");
    String bookname=rs.getString("name");
    String price=rs.getString("price");
    String picture=rs.getString("pic");

    //out.println("\tshuliang"+amount);
    %>
    tr>td>%=orderid %>/td>td>%=picture %>/td>td>%=bookname %>/td>td>%=price %>/td>td>%=amount %>/td>td>table>tr>td>input type="button" value="删除" onclick="window.location.href='delete.jsp?orderid=%=orderid %>'">/td>/tr>/table>/td>/tr>
    %
    }
    // 关闭连接
    stmt.close();// 关闭命令对象连接
    con.close();// 关闭数据库连接
    } catch (SQLException e) {
    e.printStackTrace();
    out.println("数据库连接错误");
    System.exit(0);
    }
    //数据库连接完成
    %>
    /table>
    您可能感兴趣的文章:
    • JSP开发入门(二)----JSP语法的基本原理
    • JSP的9种基本内置组件
    • JSP语法Page指令
    • JSP 多条SQL语句同时执行的方法
    • jsp web.xml文件的作用及基本配置
    • 基于JSP编译器基本语法的使用详解
    • JSP经典学习笔记(包含各种入门常用语法)
    • JSP基本语句用法总结
    上一篇:jsp文件绝对路径的设置方法
    下一篇:jsp获取action传来的session和session清空以及判断
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    jsp与sql语句的混合使用示例 jsp,与,sql,语句,的,混合,