What will happen to an anonymus block,if there is no statement inside the block?eg:-declarebeginend;

Showing Answers 1 - 5 of 5 Answers

User

  • Jan 24th, 2007
 

An error is encountered.

  Was this answer useful?  Yes

Chiranjit Dutta

  • Feb 27th, 2007
 

We cant have
declare
begin
end
we must have something between the begin and the end keywords
otherwise a compilation error will be raised.

visitor

  • Jul 3rd, 2007
 


If you do not want any executable statement within the begin-end block, you can include a null statment.

eg:

begin
     null;

end;

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions