mysql-jdbc往Mysql中添加数据没反应,求教
程序员文章站
2022-03-10 12:54:42
...
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(); } } }}
运行起来表格里什么都没有