日期:2014-05-17  浏览次数:21113 次

求助:如果update语句成功更新,如果验证呢?
有没有返回值什么的?

------解决方案--------------------
SQL code

sql%rowcount

------解决方案--------------------
SQL> select * from a02;

COL1 CO
-------------------- --
2012-07-04 1
2012-07-05 1
2012-07-06 3

SQL> begin
2 update a02 set col2=2;
3 dbms_output.put_line('修改了'||sql%rowcount||'行');
4 end;
5 /
修改了3行

PL/SQL procedure successfully completed.
------解决方案--------------------
sql%rowcount返回更新行数,跟JAVA中PreparedStatement.executeUpdate()返回值类似吧。