PUTTING NULL after NO_DATA_FOUND exception
825873Dec 29 2010 — edited Dec 29 2010hi,
Can we put null;
after not_data_found exception?
I dont want to find any error due to no_data_found instead I want the proc to continue like that without giving any validations.
BEGIN
-------PROC code here------
EXCEPTION
WHEN NO_DATA_FOUND
THEN
NULL;
END;
I have put the exception like above. is it correct way. Or will I face any error due to that.??