当前位置: 代码迷 >> SQL >> sqlca.sqlcode(100与1403)有什么区别?解决方案
  详细解决方案

sqlca.sqlcode(100与1403)有什么区别?解决方案

热度:735   发布时间:2016-05-05 12:35:48.0
sqlca.sqlcode(100与1403)有什么区别?
sqlca.sqlcode(100与1403)有什么区别
ORA-00100: 未找到数据
ORA-01403: 未找到数据
------解决思路----------------------
你用的什么数据库? SQL Anywhere ?

如果是ORACLE,则可以到CSDN的ORACLE去咨询。
------解决思路----------------------
ORA-00100 no data found

Cause: An application made a reference to unknown or inaccessible data.

Action: Handle this condition within the application or make appropriate modifications to the application code.



ORA-01403 no data found

Cause: In a host language program, all records have been fetched. The return code from the fetch was +4, indicating that all records have been returned from the SQL query.

Action: Terminate processing for the SELECT statement.

  相关解决方案