日期:2014-05-18  浏览次数:21519 次

为什么提示缺少SET关键字
Statement   mystmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);

mystmt.executeUpdate( "UPDATE   bus.manager "   +   "SET   times=times+1 "   + "where   id= ' "+name+ " ' ");

------解决方案--------------------
改成下面的试试:
mystmt.executeUpdate( "UPDATE bus.manager " + " SET times=times+1 " + "where id= ' "+name+ " ' ");

------解决方案--------------------
加空格!