update product set productname='name',productprice='price',productnumber='number' where productid='id'
改成
update product set productname=?,productprice=?,productnumber=? where productid=?
如楼上所讲:执行ps.executeUpdate()之后并不会自动进行事务的提交。
需要在之后添加执行
con.commit()
你执行下试一下吧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)