Describe the Basic PL/SQL Program Structure

Андрей Волков

Андрей Волков

Системное, сетевое администрирование +DBA. И немного программист!))  Профиль автора.

"PL/SQLThe structure you use in PL/SQL is the foundation for the language as a whole. Once you’ve mastered it, you will then be able to move forward; however, if you do not take the time to get this first step right, your journey will be difficult. Thankfully, it’s quite simple.

The structure is quite basic. You will have areas for your program parameters (these are used to pass values from outside a program to the program itself), your internal variables, the main program code and logic, and various ways to deal with problem situations. Let’s look at the basic form of a PL/SQL block:

 

[DECLARE]

-- Put Variables Here 

BEGIN

-- Put Program Here [EXCEPTION]
-- Put exception handlers here

END;

/

That’s it: the basic structure of every PL/SQL program. When we talk about PL/SQL programs, they are referred to as PL/SQL blocks. PL/SQL blocks are simply programs that are complete and that are programmed to run successfully. A PL/SQL program comprises one or more of these blocks, which you can think of as routines. So at the basic level, you only need one block for a valid PL/SQL program, but as you consider writing a more complex program, you will find it easiest if each block addresses a particular task or subtask; it is these structures that you will use in all of your PL/SQL programs to create the most robust code possible. The PL/SQL block structures form the basis for any program you write in PL/SQL. My blog builds upon that fundamental form, each section helping you move toward more complex programs.

In its basic form, you will usually need to declare variables in your PL/SQL program. It is these variables used in the PL/SQL that hold the declarative or working storage area (including constants, local program variables, select statements, data arrays, and such) within your program. These variables are then available for use in your program. So if you need a counter, a data array, data variables, or even Boolean variables, you will declare them here.

Next is the program body or executable section. It is the only section you really need to include in your PL/SQL block because you could write a program without variables or exception handling. It is in this section that you build your program logic and database access. That is why you must always remember BEGIN and END; these are your PL/SQL bookends. It is between these two lines that your program logic is contained.

Ask the Expert

Q:   What are the only lines of the PL/SQL block that are required to create a functional program?

A:   The only lines of the basic PL/SQL block that are required to create a functional program are BEGIN and END.

 

Вас заинтересует / Intresting for you:

PL/SQL package: Collecting Rel...
PL/SQL package: Collecting Rel... 1389 views sepia Sat, 01 Dec 2018, 10:54:57
Why Oracle DBAs learn PL/SQL a...
Why Oracle DBAs learn PL/SQL a... 1651 views Андрей Волков Wed, 12 Sep 2018, 14:43:12
Introduction to PL/SQL
Introduction to PL/SQL 2370 views Antoniy Wed, 12 Sep 2018, 15:18:13
Translating PL/SQL to JavaScri...
Translating PL/SQL to JavaScri... 3333 views Гвен Sun, 03 Jun 2018, 11:54:40
Comments (0)
There are no comments posted here yet
Leave your comments
Posting as Guest
×
Suggested Locations