Handling user-defined exceptions with a WHEN clause : Your Exception « PL SQL Programming « 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 Programming » Your Exception 
24. 18. 4. Handling user-defined exceptions with a WHEN clause
SQL>
SQL>
SQL> create table company(
  2     product_id        number(4)    not null,
  3     company_id          NUMBER(8)    not null,
  4     company_short_name  varchar2(30not null,
  5     company_long_name   varchar2(60)
  6  );

Table created.

SQL> insert into company values(1,1001,'A Inc.','Long Name A Inc.');

row created.

SQL> insert into company values(1,1002,'B Inc.','Long Name B Inc.');

row created.

SQL> insert into company values(1,1003,'C Inc.','Long Name C Inc.');

row created.

SQL> insert into company values(2,1004,'D Inc.','Long Name D Inc.');

row created.

SQL> insert into company values(2,1005,'E Inc.','Long Name E Inc.');

row created.

SQL> insert into company values(2,1006,'F Inc.','Long Name F Inc.');

row created.

SQL>
SQL>
SQL> create table org_company_site(
  2     company_id number(8not null,
  3     site_no number(4not null
  4  );

Table created.

SQL> insert into org_company_site values (1001,1);

row created.

SQL> insert into org_company_site values (1002,2);

row created.

SQL> insert into org_company_site values (1003,3);

row created.

SQL> insert into org_company_site values (1004,1);

row created.

SQL> insert into org_company_site values (1004,2);

row created.

SQL> insert into org_company_site values (1004,3);

row created.

SQL> insert into org_company_site values (1005,1);

row created.

SQL> insert into org_company_site values (1005,4);

row created.

SQL> insert into org_company_site values (1005,5);

row created.

SQL> insert into org_company_site values (1006,1);

row created.

SQL>
SQL>
SQL> BEGIN
  2  insert into company values (3,1007,'O Inc.','O Inc.');
  3  COMMIT;
  4  END;
  5  /

PL/SQL procedure successfully completed.

SQL> DECLARE
  2    sites_undefined_for_org EXCEPTION;
  3    v_cnt NUMBER;
  4  BEGIN
  5    SELECT COUNT(*)
  6    INTO v_cnt
  7    FROM org_company_site
  8    WHERE company_id =1007;
  9    IF (v_cnt=0)THEN
 10      --explicitly raising the user-defined exception
 11      RAISE sites_undefined_for_org;
 12    END IF;
 13  EXCEPTION
 14    --handling the raised user-defined exception
 15    WHEN sites_undefined_for_org THEN
 16      dbms_output.put_line('There are no sites defined for organization 1007');
 17    WHEN OTHERS THEN
 18      dbms_output.put_line('ERR:An error occurred with info :'||
 19      TO_CHAR(SQLCODE)||' '||SQLERRM);
 20  END;
 21  /
There are no sites defined for organization 1007

PL/SQL procedure successfully completed.

SQL>
SQL>
SQL> drop table company;

Table dropped.

SQL>
SQL> drop table org_company_site;

Table dropped.

SQL>
24. 18. Your Exception
24. 18. 1. Create your own no_data_found EXCEPTION
24. 18. 2. An example showing handling of pre-defined exceptions
24. 18. 3. Catch 'cannot get lock exception'
24. 18. 4. Handling user-defined exceptions with a WHEN clause
24. 18. 5. An example of using PRAGMA EXCEPTION_INIT
24. 18. 6. Assign custom exception a number
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.