大神帮忙看下我的程序为什么不能更新数据库(java)(mysql)(tomcat)谢谢

大神帮忙看下我的程序为什么不能更新数据库(java)(mysql)(tomcat)谢谢,第1张

sql语句的问题啊

update product set productname='name',productprice='price',productnumber='number' where productid='id'

改成

update product set productname=?,productprice=?,productnumber=? where productid=?

如楼上所讲:

执行ps.executeUpdate()之后并不会自动进行事务的提交。

需要在之后添加执行

con.commit()

你执行下试一下吧


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6797056.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存