当前位置: 技术问答>java相关
PrepareStatement的问题,哪位有空给我讲讲
来源: 互联网 发布时间:2015-03-20
本文导语: Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:coffeetest"); PreparedStatement updateSales=con.prepareStatement("UPDATE COFFEES SET SALES=?,TOTAL=TOTAL+? WHERE COF_NAME LIKE ?"); updateSales.setInt(1,75); updateSales.setIn...
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:coffeetest");
PreparedStatement updateSales=con.prepareStatement("UPDATE COFFEES SET SALES=?,TOTAL=TOTAL+? WHERE COF_NAME LIKE ?");
updateSales.setInt(1,75);
updateSales.setInt(2,75);
updateSales.setString(3,"Colombian");
int o=updateSales.executeUpdate();
能够正常编译,执行。但完全没有效果,UPDATE对数据库没有影响。不知道是什么原因?
我用的是windows2000server sqlserver7.0,不知道是不是sqlserver7.0不支持预编译?
Connection con=DriverManager.getConnection("jdbc:odbc:coffeetest");
PreparedStatement updateSales=con.prepareStatement("UPDATE COFFEES SET SALES=?,TOTAL=TOTAL+? WHERE COF_NAME LIKE ?");
updateSales.setInt(1,75);
updateSales.setInt(2,75);
updateSales.setString(3,"Colombian");
int o=updateSales.executeUpdate();
能够正常编译,执行。但完全没有效果,UPDATE对数据库没有影响。不知道是什么原因?
我用的是windows2000server sqlserver7.0,不知道是不是sqlserver7.0不支持预编译?
|
把 LIKE 换成 = 应该可以。~~~
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。