时间:2021-07-01 10:21:17 帮助过:64人阅读
首先我设置了取消默认提交,而且注释了connection.commit(),然后我执行
statement.executeUpdate ("insert into news values(88,'yui','uuu','2015-12-18')"); 语句发现数据库中没有变化,
但是我接着写ResultSet rs= statement.executeQuery("select * from news where id=88"); 语句却可以正常获得(88,'yui','uuu','2015-12-18')这一条数据
请问为什么,本人初学