插入失效

在执行插入语句时,如下写道




String sql = "insert into user(userID,username,password) values(?,?,?)";
PrepareStatement smt = connnection.prepareStatement(sql);
smt.setObject(1,System.currentTimeMillis());
smt.setObject(2,"xxx");
smt.setObject(3,"xxxx");
smt.execute();


上面的语句执行了,没有发生异常,找开表一看,Y,没东西,
然后挠头再想。。。。





时间过了有一个小时,还是没有,不停刷新数据库,我都要怀疑Mysql 质量了。。。。。




查资料中。。。。。。






最后无奈的发现,最初始conection 在连接池生产出来后就 setAutoCommit(false) 了
,原来是没有提交事务,我里个去。。。。

你可能感兴趣的:(插入失效)