ORA-01403:no data found 解決方法兩則

xingfei80發表於2010-07-05

ORA-01403:no data found 解決方法兩則

解決方法一:加一個exception異常處理
exception when no_data_found then
....

解決方法二:更改select語句,如:
select count(*) field into var from table where ....
增加一個count(*)即使沒有找到資料,也會返回0,而不是null。

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14663377/viewspace-1034966/,如需轉載,請註明出處,否則將追究法律責任。

相關文章