plsql

Topics related to plsql:

Getting started with plsql

This section provides an overview of what plsql is, and why a developer might want to use it.

It should also mention any large subjects within plsql, and link out to the related topics. Since the Documentation for plsql is new, you may need to create initial versions of those related topics.

PLSQL procedure

Functions

Packages

Cursors

IF-THEN-ELSE Statement

Exception Handling

Loop

Bulk collect

Assignments model and language

Triggers

Object Types

It is important to note that an object body may not always be necessary. If the default constructor is sufficient, and no other functionality needs to be implemented then it should not be created.

A default constructor is the Oracle supplied constructor, which consists of all attributes listed in order of declaration. For example, an instance of BASE_TYPE could be constructed by the following call, even though we do not explicitly declare it.

l_obj := BASE_TYPE(1, 'Default', 1);

Exception Handling

Collections and Records