Skip to main content

Why isn't my exception section catching my error?

I got an interesting email today from a reader of one of my PL/SQL 101" articles for Oracle Magazine, Building with Blocks.

Q. had taken the code from the article, made some changes, tried to run them, and got very confused. He wrote:

When I run this code, I see "Hello World".
DECLARE
  l_message VARCHAR2(100) := 'Hello World!';
BEGIN
  DBMS_OUTPUT.put_line (l_message);
EXCEPTION
  WHEN OTHERS
  THEN
    DBMS_OUTPUT.put_line ('Error='||SQLERRM);
END;
/

Hello World!
When I change the block to make the l_message variable too small for its string, I see the VALUE_ERROR error message.
DECLARE
  l_message VARCHAR2(10);
BEGIN
  l_message := 'Hello World!';
  DBMS_OUTPUT.put_line (l_message);
EXCEPTION
  WHEN OTHERS
  THEN
    DBMS_OUTPUT.put_line ('Error='||SQLERRM);
END;
/

Error=ORA-06502: PL/SQL: numeric or value error: character string buffer too small 
But when I change the name of the variables inside the call to DBMS_OUTPUT.PUT_LINE to "l_message1", the exception handler is not displaying the error message, instead I see the following:
When I change the block to make the l_message variable too small for its string, I see the VALUE_ERROR error message.
DECLARE
  l_message VARCHAR2(10) := 'Hello World!';
BEGIN
  DBMS_OUTPUT.put_line (l_message1);
EXCEPTION
  WHEN OTHERS
  THEN
    DBMS_OUTPUT.put_line ('Error='||SQLERRM);
END;
/

ORA-06550: line 5, column 25:
PLS-00201: identifier 'L_MESSAGE1' must be declared 
Why am I seeing this inconsistent behavior?  

I was confused about the source of his confusion, but after a couple of back-and-forth emails (what you read above is the cleaned-up version of that back-and-forth), the light bulb lit in my brain. Which enabled me to clear up his confusion, and inspire me to write a blog post, in case the same confusion was confusing anyone else.

Here's the most important thing to remember:
Exception sections handle exceptions raised when the block is executed. But first that block must be compiled!
When you are writing code within stored program units, like procedures and functions, this is clearly a two stage process:
  1. Compile
  2. Execute
But when you are working with an anonymous block, all you do is execute the block. So you can certainly be forgiven for thinking that anything that goes wrong will be caught in the exception handler.

The reality is different however. When you run an anonymous block, the PL/SQL engine will first of all parse and compile the block. If all goes well, then the PL/SQL runtime engine will execute the compiled code.

If, however, your code fails to compile, well....you will get a compile error, rather than an runtime exception.

How do you know you've gotten a compile error? Check the prefix. If it is "PLS", something went kablooey at compile time. Your code cannot be executed. If the prefix is "PLW", that's a compile-time warning, which means that the code compiled, but the PL/SQL engine has suggestions for improving it. And if the prefix is "ORA", ah, then you've got a runtime error - an exception.

Only in that last case with the exception handler, if present, be able to trap the exception.

I hope that makes thing nice and clear. Any comments or questions? :-)


Comments

  1. „Error=Hello World„ Shoudn‘t this be „Hello World!“? :-)
    Trank you for all the great and inspiring blog posts. They are a great help!

    ReplyDelete
    Replies
    1. Jan, thanks for your kind words and for catching that mistake in my output. I have fixed it!

      Delete
  2. Whilst I understand the point you're trying to make, unfortunately the examples don't seem to do that. In particular, whilst the compiler could (in this case) detect that a VARCHAR2(10) is too small, it doesn't, so you get a runtime error. But an error in a declaration isn't handled within the exception handler for that block, but in the calling block. So you won't see the Error= prefix. I've been caught by this on several occasions where an error message misleadingly comes from the error handler of the calling block, not of the block where the error actually is because it's in the declaration section.

    ReplyDelete
  3. Thanks for pointing that out, M P.

    That was sloppy of me. I have changed the code in that block to move the assignment to the executable section.

    Which reminds me of a rule I tell myself to follow but then at least sometimes do not follow:

    TEST ALL YOUR CODE BEFORE PUBLISHING IT!

    :-)

    Regards, Steven

    ReplyDelete

Post a Comment

Popular posts from this blog

Why DBMS_OUTPUT.PUT_LINE should not be in your application code

A database developer recently came across my  Bulletproof PL/SQL  presentation, which includes this slide. That first item in the list caught his attention: Never put calls to DBMS_OUTPUT.PUT_LINE in your application code. So he sent me an email asking why I would say that. Well, I suppose that is the problem with publishing slide decks. All the explanatory verbiage is missing. I suppose maybe I should do a video. :-) But in the meantime, allow me to explain. First, what does DBMS_OUTPUT.PUT_LINE do? It writes text out to a buffer, and when your current PL/SQL block terminates, the buffer is displayed on your screen. [Note: there can be more to it than that. For example, you could in your own code call DBMS_OUTPUT.GET_LINE(S) to get the contents of the buffer and do something with it, but I will keep things simple right now.] Second, if I am telling you not to use this built-in, how could text from your program be displayed on your screen? Not without a lot o...

The future of Oracle PL/SQL: some thoughts on Sten Vesterli's thoughts

Sten Vesterli published a very thought-provoking post on his blog: Please stop reading this post, and read that one. When you are done, come on back here for my thoughts on Sten's thoughts. OK. You read it. Here we go. First, thanks, Sten, for being such an interesting, wise, sometimes provocative voice in our community. Next, Sten writes: Now, on the one hand, I certainly agree that the vast majority of young developers are currently caught up in the modern version of a Gold Rush, which is: "Build an app using JavaScript, pay no attention to that database behind the curtain." But I can assure you that I still do meet young PL/SQL programmers, regularly, when I am at conferences and doing onsite presentations at companies. So, young person who writes PL/SQL: do not be afraid! You are not alone! And you are super-smart to have made the choice you did. :-) Next, Sten offers this advice to managers: I agree that PL/SQL is a "spec...

Table Functions, Part 1: Introduction and Exploration

Please do feel encouraged to read this and my other posts on table functions, but you will learn much more about table functions by taking my Get Started with PL/SQL Table Functions class at the Oracle Dev Gym. Videos, tutorials and quizzes - then print a certificate when you are done! Table functions - functions that can be called in the FROM clause of a query from inside the TABLE operator - are fascinating and incredibly helpful constructs. So I've decided to write a series of blog posts on them: how to build them, how to use them, issues you might run into. Of course, I am not the first to do so. I encourage to check out the  documentation , as well as excellent posts from Adrian Billington (search for "table functions") and Tim Hall . Adrian and Tim mostly focus on pipelined table functions, a specialized variant of table functions designed to improve performance and reduce PGA consumption. I will take a look at pipelined table functions in the latter part...