What Is Block Statements In PL/SQL ?
What Is Block Statements In PL/SQL ?
PL/SQL contains Three sections
The Declaration Section (optional)
The Execution Section (mandatory)
The Exception Handling Section (optional)
The Declaration Section (optional) :
The Declaration Section is started with reserved keyword DECLARE,and is optional section.This section is used for any placeholders like Variables, records, constants, cursors, which are used to manipulate data in the Execution section.
The Execution Section (mandatory) :
The Execution Section is started with reserved keyword BEGIN and ends with END,and is mandatory section.This is a section where all the program logic is written to perform the task.
The Exception Handling Section (optional) :
The Exception Handling Section is also start with a reserved keyword EXCEPTION,and is an optional section.This section is used for any errors in the program.
Note: Every statement will be ended with semicolon ; .
Unknown
Our Sites
Google Search UI
Popular Posts
-
PL/SQL Placeholders can be any variables,constants,cursors and records .Placeholders is temporary storage area, with the help of placeho...
-
How To Create A User In Pl/SQL ? When we talk about Create a new user in PL/SQL then we think about System account ( ADMINIST...
-
HOW TO GRANT PRIVILEGES IN ORACLE PL/SQL? In our previous post we discussed about CREATE USER statement for new user in PL/SQL...
-
WHAT ARE PL/SQL CONSTANTS? As we can see the word CONSTANT, we can translate it by this that anything that can not be changed through ...
-
WHAT ARE PL/SQL FUNCTIONS? Function is similar to the procedure and it is a named PL/SQL block,The difference between Function and Proc...
-
Configuration of Tnsnames.ora File : Newcomers find it hard to configure the files of oracle networking paths,mostly people searches a...
-
What Is Block Statements In PL/SQL ? PL/SQL contains Three sections The Declaration Section (optional) The Execution Section (mand...
-
What can we do with HTML ? With the help of HTML you can make your own web site. How can we write the HTML ? Web pages can be wri...
-
WHAT ARE CURSORS IN PL/SQL ? A cursor is a temporary area which is created in system memory at the time of program executed.Cursors ...
-
INTRODUCTION TO DEFUSER.TK Hello everyone, DEFUSER.TK is the website for learning coding of different languages,that are mainly pa...
No comments:
Post a Comment