java.sql.SQLException: ORA-01002: fetch out of sequence

jdbc的规则 不能违反顺序读取 解决方案1:

手动提交设置 conn.setAutoCommit(false);

conn.commit(); //在每一个rs读取的地方提交

conn.setAutoCommit(true);

相关文章:

  • 2022-12-23
  • 2021-10-29
  • 2021-04-02
  • 2021-12-27
  • 2022-01-14
  • 2021-09-13
  • 2022-12-23
猜你喜欢
  • 2021-11-17
  • 2021-11-21
  • 2021-04-04
  • 2021-12-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案