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

Quick Guide to User-Defined Types in Oracle PL/SQL

A Twitter follower recently asked for more information on user-defined types in the PL/SQL language, and I figured the best way to answer is to offer up this blog post. PL/SQL is a strongly-typed language . Before you can work with a variable or constant, it must be declared with a type (yes, PL/SQL also supports lots of implicit conversions from one type to another, but still, everything must be declared with a type). PL/SQL offers a wide array of pre-defined data types , both in the language natively (such as VARCHAR2, PLS_INTEGER, BOOLEAN, etc.) and in a variety of supplied packages (e.g., the NUMBER_TABLE collection type in the DBMS_SQL package). Data types in PL/SQL can be scalars, such as strings and numbers, or composite (consisting of one or more scalars), such as record types, collection types and object types. You can't really declare your own "user-defined" scalars, though you can define subtypes  from those scalars, which can be very helpful from the p...

Three tips for getting started right with Oracle Database development

By "Oracle Database development", I mean, more or less, writing SQL and PL/SQL. I assume in this post that you have access to Oracle Database (which you can get via Cloud services, Docker , GitHub and OTN ). A. Use a powerful IDE, designed with database programming in mind. There are lots of editors out there, and many IDEs that work with Oracle Database. Sure, you could use Notepad, but OMG the productivity loss. You could also use a popular editor like Sublime, and then it get it working with Oracle. I suggest, however, that you  download  and install Oracle's own own, free, powerful IDE: SQL Developer . If you like to complement your graphical IDE with a command line tool (or OMG if you actually prefer  a command line tool to a graphical interface), you should also check out the relatively new and generating-lots-of-excitement SQLcl . B. Enable compile-time warnings and PL/Scope. The database has tons of useful functionality burned right into it, ready for...

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...