当前位置: 技术问答>java相关
为什么这样做不可以更新数据库呢?
来源: 互联网 发布时间:2015-09-19
本文导语: try{ // create a prepared SQL statement PreparedStatement updateacc; String strSQL="UPDATE usraccount SET usermoney=?,ioflag=?,ftype=?,userbak=? where ID=?"; updateacc = con.prepareStatement(strSQL); updateacc.setInt(1, money); updateacc.se...
try{
// create a prepared SQL statement
PreparedStatement updateacc;
String strSQL="UPDATE usraccount SET usermoney=?,ioflag=?,ftype=?,userbak=? where ID=?";
updateacc = con.prepareStatement(strSQL);
updateacc.setInt(1, money);
updateacc.setInt(2, ioflag);
updateacc.setInt(3, ftype);
updateacc.setString(4, bak);
updateacc.setString(5, id);
updateacc.executeUpdate();
}
其中,变量money,ioflag,ftype,bak,id是传递过来的
这个执行不报错,可是也不更新数据库,为什么?
谢谢。
// create a prepared SQL statement
PreparedStatement updateacc;
String strSQL="UPDATE usraccount SET usermoney=?,ioflag=?,ftype=?,userbak=? where ID=?";
updateacc = con.prepareStatement(strSQL);
updateacc.setInt(1, money);
updateacc.setInt(2, ioflag);
updateacc.setInt(3, ftype);
updateacc.setString(4, bak);
updateacc.setString(5, id);
updateacc.executeUpdate();
}
其中,变量money,ioflag,ftype,bak,id是传递过来的
这个执行不报错,可是也不更新数据库,为什么?
谢谢。
|
你确认你的strSQL能够起到更新数据库的功能吗?有可能where ID=?根本成立不了。
|
有可能usraccount这个表/视图根本就不允许update
|
最好print出你的sql語句來查看一下,會看的很清楚的