问题描述
ps是语句对象 conn是连接对象String sql="update student set name=?,sex=?,address=? where id=?";ps=conn.prepareStatement(sql);---------------------就是这里是什么意思 是赋给语句对象ps吗?
解决方案
将执行 conn.prepareStatement(sql) 后返回的 PreparedStatement 赋给 ps。楼主还是去看下基础的书吧,也可以看看马士兵或者其他人的java基础教程。
时间: 2025-01-14 11:53:04