AlexTransformer 2018-11-29 07:10 采纳率: 0%
浏览 544
已采纳

JSP连接数据库插入数据相关问题?

<%@ page contentType="text/html; charset=utf-8" %> 
<%@ page language="java" %> 
<%@ page import="com.mysql.jdbc.Driver" %> 
<%@ page import="java.sql.*" %>
<html>
    <head>
    </head> 
<% 
//request.setCharacterEncoding("utf-8"); 
//String text = request.getParameter("text");
//加载驱动程序 
String driverName="com.mysql.jdbc.Driver"; 
//数据库信息
String USER = "root"; 
//密码 
String PASS = "sq123456";  
String DB_URL="jdbc:mysql://localhost/official_website";

Connection conn = null;
Statement stmt = null;
out.print("连接中......");
try{
    // 注册 JDBC 驱动
    Class.forName("com.mysql.jdbc.Driver");
    out.print("连接成功......");    
    // 打开链接
    conn = DriverManager.getConnection(DB_URL,USER,PASS); 
    out.print("打开连接......");  
    stmt = conn.createStatement();
    String sql;
    sql = "INSERT INTO test_table (context) VALUES('I'm a saver!testing!testing!')";
    out.print("读取SQL语句中.......");

    stmt.executeUpdate(sql);

    out.print("执行完成......."); 
    out.print("Success!");
    out.print(sql);       
    // 完成后关闭
    stmt.close();
    conn.close();
}catch(SQLException se){
    // 处理 JDBC 错误
    se.printStackTrace();
}catch(Exception e){
    // 处理 Class.forName 错误
    e.printStackTrace();
}finally{
    // 关闭资源
    try{
        if(stmt!=null) 
            stmt.close();
    }catch(SQLException se2){
        }// 什么都不做
    try{
        if(conn!=null) 
            conn.close();
    }catch(SQLException se){
         se.printStackTrace();
        }
}
%>
    <body>
    </body> 
</html>

这个段代码的stmt.executeUpdate(sql);这个段语句不执行也不报错到这就停了。这是为什么?

  • 写回答

1条回答 默认 最新

  • 才沐木 2018-11-29 07:23
    关注

    sql = "INSERT INTO test_table (context) VALUES('I'm a saver!testing!testing!')";这个语句你在数据库执行过没有,肯定有问题啊,应该是
    sql = "INSERT INTO test_table (context) VALUES('I''m a saver!testing!testing!')";

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退