Block Structure : Introduction « PL SQL Data Types « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » PL SQL Data Types » Introduction 
21. 1. 1. Block Structure

You typically use PL/SQL to add business logic to the database.

PL/SQL programs are divided up into structures known as blocks.

Each block containing PL/SQL and SQL statements.

A typical PL/SQL block has the following structure:

[DECLARE
  declaration_statements
]
BEGIN
  executable_statements
[EXCEPTION
  exception_handling_statements
]
END;
  1. The declaration and exception blocks are optional.
  2. declaration_statements declares the variables subsequently used in the rest of the block.
  3. These variables are local to that block.
  4. Declarations are always placed at the start of the block.
  5. executable_statements are the actual executable statements for the block.
  6. executable_statements may include statements for performing tasks such as loops, conditional logic, and so on.
  7. exception_handling_statements are statements that handle any errors.
  8. Every statement is terminated by a semicolon (;).
  9. A block is terminated using the END keyword.
DECLARE        
  2    width INTEGER;
  3    height INTEGER := 2;
  4    area INTEGER;
  5  BEGIN
  6    area := 6;
  7    width := area / height;
  8    DBMS_OUTPUT.PUT_LINE('width = ' || width);
  9  EXCEPTION
 10    WHEN ZERO_DIVIDE THEN
 11      DBMS_OUTPUT.PUT_LINE('Division by zero');
 12  END;
 13  /
width = 3

PL/SQL procedure successfully completed.

SQL>
21. 1. Introduction
21. 1. 1. Block Structure
21. 1. 2. Your First PL/SQL Block
21. 1. 3. The slash character (/) at the end of the example executes the PL/SQL.
21. 1. 4. You can declare the whole string to be enclosed in quotes by using the construct q'!text!'
21. 1. 5. All identifiers within the same scope must be unique.
21. 1. 6. Building Expressions with Operators
21. 1. 7. PL/SQL datatypes
21. 1. 8. Variable Naming Rules
21. 1. 9. Introducing the Main Data type Groups
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.