Skip Headers
Oracle® Database PL/SQL Language Reference
11g Release 2 (11.2)

Part Number E17126-03
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

Block

The block, which groups related declarations and statements, is the basic unit of a PL/SQL source program. It has an optional declarative part, a required executable part, and an optional exception-handling part. Declarations are local to the block and cease to exist when the block completes execution. Blocks can be nested.

An anonymous block is an executable statement.

Topics:

Syntax

plsql_block ::=

plsql_block
Description of the illustration plsql_block.gif

See "body ::=".

declare_section ::=

declare_section
Description of the illustration declare_section.gif

See "item_list_2 ::=".

item_list_1 ::=

item_1_list
Description of the illustration item_list_1.gif

See:

item_list_2 ::=

item_2_list
Description of the illustration item_list_2.gif

See:

type_definition ::=

type_definition
Description of the illustration type_definition.gif

See:

subtype_definition ::=

subtype_definition
Description of the illustration subtype_definition.gif

constraint ::=

subtype_definition
Description of the illustration constraint.gif

item_declaration ::=

item_declaration
Description of the illustration item_declaration.gif

See:

pragma ::=

pragma
Description of the illustration pragma.gif

See:

body ::=

body
Description of the illustration basic_body.gif

See:

statement ::=

statement
Description of the illustration statement.gif

See:

procedure_call ::=

sql_statement
Description of the illustration procedure_call.gif

sql_statement ::=

sql_statement
Description of the illustration sql_statement.gif

Semantics

plsql_block

label

An undeclared identifier. If a block has multiple labels, they must be unique for that block.

DECLARE

Starts the declarative part of the block.

declare_section

Contains local declarations, which exist only in the current block and its sub-blocks and are not visible to enclosing blocks.

Restrictions on declare_section 

See Also:

subtype_definition

subtype_name

An identifier, the name of the user-defined subtype that you are defining.

base_type

The base type of the subtype that you are defining. The base type must be scalar.

CHARACTER SET character_set

Specifies the character set for a subtype of a character data type.

Restriction on CHARACTER SET character_set Do not specify this clause if base_type is not a character data type.

NOT NULL

Imposes the NOT NULL constraint on data items declared with this subtype. For information about this constraint, see "NOT NULL Constraint".

constraint

Specifies a constraint for a subtype of a numeric data type.

Restriction on constraint Do not specify constraint if base_type is not a numeric data type.

precision]

Specifies the precision for a constrained subtype of a numeric data type.

Restriction on precision Do not specify precision if base_type cannot specify precision.

scale

Specifies the scale for a constrained subtype of a numeric data type.

Restriction on scale Do not specify scale if base_type cannot specify scale.

RANGE low_value .. high_value

Specifies the range for a constrained subtype of a numeric data type. The low_value and high_value must be numeric literals.

Restriction on RANGE high_value .. low_value Specify this clause only if base_type can specify a range; that is, if base_type is a subtype of PLS_INTEGER. (Table 3-3 summarizes the predefined subtypes of PLS_INTEGER.)

body

BEGIN

Starts the executable part of the block, which contains executable statements.

EXCEPTION

Starts the exception-handling part of the block. When PL/SQL raises an exception, normal execution of the block stops and control transfers to the appropriate exception_handler. After the exception handler completes, execution resumes with the statement following the block. For more information about exception-handling, see Chapter 11, "PL/SQL Error Handling."

exception_handler

See "Exception Handler".

END

Ends the block.

name

The name of the block to which END applies—a label, function_name, procedure_name, or package_name.

statement

label

An undeclared identifier. If a statement has multiple labels, they must be unique for that statement.

assignment_statement

See "Assignment Statement".

basic_loop_statement

See "Basic LOOP Statement".

case_statement

See "CASE Statement".

close_statement

See "CLOSE Statement".

collection_method_call

An invocation of one of these collection methods, which are procedures:

For syntax, see "Collection Method Invocation".

continue_statement

See "CONTINUE Statement".

cursor_for_loop_statement

See "Cursor FOR LOOP Statement".

execute_immediate_statement

See "EXECUTE IMMEDIATE Statement".

exit_statement

See "EXIT Statement".

fetch_statement

See "FETCH Statement".

for_loop_statement

See "FOR LOOP Statement".

forall_statement

See "FORALL Statement".

goto_statement

See "GOTO Statement".

if_statement

See "IF Statement".

null_statement

See "NULL Statement".

open_statement

See "OPEN Statement".

open_for_statement

See "OPEN FOR Statement".

pipe_row_statement

See "PIPE ROW Statement".

Restriction on pipe_row_statement This statement can appear only in the body of a pipelined table function; otherwise, PL/SQL raises an exception.

raise_statement

See "RAISE Statement".

return_statement

See "RETURN Statement".

select_into_statement

PL/SQL SELECT INTO statement. For syntax, see "SELECT INTO Statement".

while_loop_statement

See "WHILE LOOP Statement".

procedure_call

procedure_name

The name of the procedure that you are invoking.

parameter [, parameter ]...

List of actual parameters for the procedure that you are invoking. The data type of each actual parameter must be compatible with the data type of the corresponding formal parameter. The mode of the formal parameter determines what the actual parameter can be:

Formal Parameter Mode Actual Parameter
IN Constant, initialized variable, literal, or expression
OUT Variable whose data type is not defined as NOT NULL
IN OUT Variable (typically, it is a string buffer or numeric accumulator)

If the procedure specifies a default value for a parameter, you can omit that parameter from the parameter list. If the procedure has no parameters, or specifies a default value for every parameter, you can either omit the parameter list or specify an empty parameter list.

sql_statement

commit_statement

SQL COMMIT statement. For syntax, see Oracle Database SQL Language Reference.

delete_statement

SQL DELETE statement. For syntax, see Oracle Database SQL Language Reference. See also "DELETE Statement Extension".

insert_statement

SQL INSERT statement. For syntax, see Oracle Database SQL Language Reference. See also "INSERT Statement Extension".

lock_table_statement

SQL LOCK TABLE statement. For syntax, see Oracle Database SQL Language Reference.

rollback_statement

SQL ROLLBACK statement. For syntax, see Oracle Database SQL Language Reference.

savepoint_statement

SQL SAVEPOINT statement. For syntax, see Oracle Database SQL Language Reference.

set_transaction_statement

SQL SET TRANSACTION statement. For syntax, see Oracle Database SQL Language Reference.

update_statement

SQL UPDATE statement. For syntax, see Oracle Database SQL Language Reference. See also "UPDATE Statement Extensions".

Examples

Related Topics

In this chapter:

In other chapters: