Total Answers and Comments: 6
Last Update: February 16, 2008
No best answer available. Please pick the good answer available or submit your answer.
October 10, 2005 12:06:23 #1
StoneColdSteveAustin
Member Since: October 2005 Contribution: 2
RE: What is the basic structure of PL/SQL ?...
A PL/SQL block has three parts:
a declarative part,
an executable part,
and an exception-handling part.
First comes the declarative part, in which items can
be declared. Once declared, items can be manipulated in the executable part.
Exceptions raised during execution can be dealt with in the exception-handling
part.
Is this answer useful? Yes | No
November 21, 2005 02:00:23 #2
ashish
RE: What is the basic structure of PL/SQL ?... DECLARE
...........
BEGIN
...........
EXCEPTION
............
END;
Is this answer useful? Yes | No
December 06, 2005 03:59:16 #3
Jayakumar M
RE: What is the basic structure of PL/SQL ?... Declare [ Optional Section ]
Begin
Exception [ Optional Section ]
End;
Is this answer useful? Yes | No
Go To Top