当前位置:Gxlcms > mysql > mysql-jdbc往Mysql中添加数据没反应,求教

mysql-jdbc往Mysql中添加数据没反应,求教

时间:2021-07-01 10:21:17 帮助过:75人阅读

mysqljavajdbc

jar包加了的哈,数据库Connection连接也没写错,运行起来代码也没有报错,代码如下

@Testpublic void ZengTest()  {    Connection conn = null;    Statement sta = null;    try{        Class.forName("com.mysql.jdbc.Driver");        conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/d-7test", "root", "cailikun");        sta = conn.createStatement();        //增加数据的sql:        String sql = "insert into `uesr`(name) values('小蔡') ";        sta.executeUpdate(sql);    }    catch(Exception e){        e.printStackTrace();        }finally{ //最后执行两次“事”            try{if(sta!=null){                sta.close();                }            }catch(Exception e){                e.printStackTrace();                    }finally{                try{if(conn!=null){                    conn.close();                    }                       }catch(Exception e){                    e.printStackTrace();                }            }        }}

运行起来表格里什么都没有
图片说明

人气教程排行