49,773 Members
1 added today
333,617 Resources
504 added today

All Devdex   All Gurus  

How to Error Handle in PLSQL
Author: David Nishimoto
Rating: Rate this Resource
Visits: 1356

Discuss in Newsgroups

Function: Error Handling
Description:

Types of Errors:
DUP_VAL_ON_INDEX Unique constraint voilation
TIMEOUT_ON_RESOURCE Time out occurred
TRANSACTION_BACKED_OUT The transaction was rolled back
INVALID_CURSOR Illegal cursor operation
NO_DATA_FOUND No data found
TOO_MANY_ROWS A Select .. INTO statement had more than one match
CURSOR_ALREADY_OPEN Attempted to open a cursor that was already open.
ROWTYPE_MISMATCH PL/SQL cursor variable was assigned an incompatible row type.
OTHERS Other error messages not predefined


Control passing to an exception handler


DECLARE
A EXCEPTION
BEGIN
....
RAISE A
...
EXCEPTION
WHEN A THEN
....


SQLCODE and SQLERRM


SQLCODE - Oracle Error Number
SQLERRM - Descriptive Error Message


PRAGMA EXCEPTION_INIT



(exception_name, Oracle error number)
DECLARE 
	e_MissingNull EXCEPTION;
	PRAGMA EXECEPTION_INIT(e_MissingNULL,-1400);
BEGIN
	INSERT INTO temp (id) values (NULL);
EXCEPTION
	WHEN e_MissingNull then
		...
END;

Visit my guru profile

Visitor Comments

Be the first to rate this article!

 

Rate this Article







	
	
	



ASP.NET Chart Control.
Charts from your Database.
Live Demo & FREE Trial!

ASP ArticlesThis category has been added to your weekly newsletter
ASP Web Sites
ADSI & WSH BooksThis category has been added to your weekly newsletter
FREE ComponentsThis category has been added to your weekly newsletter
ASP EventsThis category has been added to your weekly newsletter
ASP HeadlinesThis category has been added to your weekly newsletter

CSharp ArticlesThis category has been added to your weekly newsletter
C# Web SitesThis category has been added to your weekly newsletter

SQL ArticlesThis category has been added to your weekly newsletter
SQL Events
SQL HeadlinesThis category has been added to your weekly newsletter
SQL Jobs

Jobs in CaliforniaThis category has been added to your weekly newsletter

XML ArticlesThis category has been added to your weekly newsletter
XML BooksThis category has been added to your weekly newsletter
XML Web Sites
XML Tutorials

free asp host

"Alex Homer"This search has been added to your weekly newsletter

Edit My Favorites Edit Profile & Favorites

 




Developersdex Home | ASP | C# | SQL | VB | XML | Gurus
Add Your Link | Add Your Code | FAQ | Advertise | Link To Us | Contact Us |
Copyright © 2010 Developersdex™. All rights reserved.