<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: How to Form an Exception Handler in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828643#M4859486</link>
    <description>&lt;P&gt;There is a difference in how errors are processed depending on whether the error occurs as part of executing a stored-procedure statement or instead it occurs while returning rows from a result set of the procedure that has been opened without error. Errors that are detected while processing a result set are not handled by the EXCEPTION clause if it is present. Instead, the error is returned to the consumer. This explains the original question because in the second case, the error is detected when the row is fetched from the result set.&lt;/P&gt;

&lt;P&gt;As noted by others, there is a difference in behavior with this statement between different versions of SA. The behavior change stems from change &lt;A href="http://search.sybase.com/kbx/changerequests?bug_id=560044" rel="nofollow"&gt;560044&lt;/A&gt;. This change causes the error to get generated as rows are fetched from the statement instead of when it is opened. This timing change only affects errors generated with expressions over constants. If the statement had contained something like the following, then behavior is unchanged (and an error is reported to the client):&lt;/P&gt;

&lt;LI-CODE lang="sql"&gt;begin
    select (YMD( dummy_col,1,1)) from sys.dummy;
EXCEPTION when others then
end
&lt;/LI-CODE&gt;

&lt;P&gt;With this example, the error can not be detected when the result set is opened, instead it occurs as the rows are fetched. As such, the error is not processed with the EXCEPTION clause and instead it is returned on the fetch.&lt;/P&gt;

&lt;P&gt;The purpose of change 560044 was not to affect the way exceptions are processed; the change is intended to avoid generating spurious errors that occur while constant expressions are evaluated at open time. In some cases, these constant expressions generated errors but the proper result set could be returned without evaluating the expressions (for example, because the result set was empty, or because other conditions prevented the expression from being needed). The change defers the error until the expression value is definitely needed.&lt;/P&gt;

&lt;P&gt;Breck, can you explain further (here or open a support case) how this change prevents you moving to a newer version. There may be some further refinements we can make to the change if we know the situations where you think the error should be generated at open time.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Oct 2010 17:34:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-15T17:34:15Z</dc:date>
    <item>
      <title>How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaq-p/13828639</link>
      <description>&lt;P&gt;Why is it that in this case:&lt;/P&gt;

&lt;LI-CODE lang="sql"&gt;begin
declare &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/14129"&gt;@zero&lt;/a&gt; integer;
set &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/14129"&gt;@zero&lt;/a&gt; = 0;
execute (YMD(@zero,1,1));
EXCEPTION when others then 
end
&lt;/LI-CODE&gt;

&lt;P&gt;The code executes without error, &lt;/P&gt;

&lt;P&gt;while in this case:&lt;/P&gt;

&lt;LI-CODE lang="sql"&gt;begin
declare &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/14129"&gt;@zero&lt;/a&gt; integer;
set &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/14129"&gt;@zero&lt;/a&gt; = 0;
select (YMD(@zero,1,1));
EXCEPTION when others then
end
&lt;/LI-CODE&gt;

&lt;P&gt;I get the error:&lt;/P&gt;

&lt;LI-CODE lang="sql"&gt;There was an error reading the results of the SQL statement.
The displayed results may be incorrect or incomplete.
Cannot convert 0 to a date
SQLCODE=-157, ODBC 3 State="07006"
&lt;/LI-CODE&gt;

&lt;P&gt;Breck has &lt;A href="http://sqlanywhere.blogspot.com/2008/02/tip-all-encompassing-try-catch.html" rel="nofollow" target="_blank"&gt; this article &lt;/A&gt; on exceptions already posted on his blog, but as I was experimenting I ran into the above.  &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;EDITS:&lt;BR /&gt;
Added ";" to second block as it should have been.&lt;BR /&gt;
Using Version 11.0.1.2472&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2010 20:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaq-p/13828639</guid>
      <dc:creator>former_SQLA_member1694868</dc:creator>
      <dc:date>2010-10-07T20:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828640#M4859483</link>
      <description>&lt;BLOCKQUOTE&gt;
  &lt;P&gt;Later edit: Read &lt;STRONG&gt;Ivan's answer&lt;/STRONG&gt; if
  you want the real story. Read this
  answer if you want some mild
  amusement, but do NOT let it guide you
  on your journey! Also, for a followup
  question, see
  &lt;A href="http://sqlanywhere-forum.sap.com/questions/1221/is-this-how-i-have-to-trap-exceptions-raised-by-the-final-select-in-a-web-service" rel="nofollow"&gt;http://sqlanywhere-forum.sap.com/questions/1221/is-this-how-i-have-to-trap-exceptions-raised-by-the-final-select-in-a-web-service&lt;/A&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;/P&gt;&lt;HR /&gt; &lt;P&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;Edit: Please note Volker's comment,
  where he describes the behavior in
  build 11.0.1.2427. My answer below
  uses an earlier build 11.0.1.2276 as
  the "base line" for comparisons.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Good catch!&lt;/P&gt;

&lt;P&gt;This looks like a &lt;STRIKE&gt;bug&lt;/STRIKE&gt; undocumented behavior change in Version 12, both the GA build 12.0.0.2483 and the first published EBF 12.0.0.2566:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;An exception raised by a SELECT that
  returns a result set from a SQL
  block will bypass the subsequent EXCEPTION
  handler in that block.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Here's your code in V11 and V12: a simple BEGIN END block in dbisql with a exception raised in the SELECT that dbisql would otherwise display in the results tab. Version 11 behaves as expected (no result set, no message), but Version 12 throws that funky dbisql dialog box (it should not).&lt;/P&gt;

&lt;PRE&gt;begin
declare @zero integer;
set @zero = 0;
select (YMD(@zero,1,1));
EXCEPTION when others then
end

-- 11.0.1.2276: no result set in dbisql, no error message

-- 12.0.0.2483: empty result, error message...
There was an error reading the results of the SQL statement.
The displayed results may be incorrect or incomplete.
Cannot convert 0 to a date
SQLCODE=-157, ODBC 3 State="07006"

-- 12.0.0.2566: empty result, error message...
There was an error reading the results of the SQL statement.
The displayed results may be incorrect or incomplete.
Cannot convert 0 to a date
SQLCODE=-157, ODBC 3 State="07006"
&lt;/PRE&gt;

&lt;P&gt;If you wrap the failing SELECT inside a PROCEDURE and SELECT from that procedure, the behavior in V11 is slightly different but also expected (empty result set, but still no message). However, in V12 it is still &lt;STRIKE&gt;wrong&lt;/STRIKE&gt; funky.&lt;/P&gt;

&lt;PRE&gt;CREATE PROCEDURE p()
begin
declare @zero integer;
set @zero = 0;
select (YMD(@zero,1,1));
EXCEPTION when others then
end;
SELECT * FROM p();

-- 11.0.1.2276: empty result set, no error message

-- 12.0.0.2483: empty result, error message...
There was an error reading the results of the SQL statement.
The displayed results may be incorrect or incomplete.
Cannot convert 0 to a date
SQLCODE=-157, ODBC 3 State="07006"

-- 12.0.0.2566: empty result, error message...
There was an error reading the results of the SQL statement.
The displayed results may be incorrect or incomplete.
Cannot convert 0 to a date
SQLCODE=-157, ODBC 3 State="07006"
&lt;/PRE&gt;

&lt;P&gt;I have a whole &lt;B&gt;jackwagon&lt;/B&gt; full of code that depends on the V11 behavior, which means I've got a whole lot of work to do before moving it to 12... if I had any idea how to do it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;HR /&gt;
jackwagon - Freight wagon or Chuck wagon (which held supplies) typically pulled by mules. Usually the slowest wagon in a wagon train. Worst job in a wagon train, being at the back, eating all the dust, dirt and smell from the front. Mules are identified as Jacks or Jenny depending on the sex of the mule. &lt;A href="http://www.webanswers.com/answer/1331703/misc/what-is-a-jack-wagon-9a4409" rel="nofollow"&gt;http://www.webanswers.com/answer/1331703/misc/what-is-a-jack-wagon-9a4409&lt;/A&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
  &lt;P&gt;It gets worse... I may not be able to
  move off build 11.0.1.2276 to a later
  EBF; see Volker's comment.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 08 Oct 2010 07:39:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828640#M4859483</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-10-08T07:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828641#M4859484</link>
      <description>&lt;P&gt;For your 2nd example, I get a syntax error (SQLCODE -131) relating to the "set" in line 3 (tested with SA 11.0.1.2427).&lt;/P&gt;

&lt;P&gt;That's reasonable as you are &lt;STRONG&gt;mixing Transact-SQL and Watcom-SQL dialects&lt;/STRONG&gt; here, and &lt;A href="http://dcx.sybase.com/1200en/dbusage/tsos.html" rel="nofollow"&gt;that is not allowed in batches&lt;/A&gt;: The declare without a closing delimiter (no ';') is T-SQL, the set statement not.&lt;/P&gt;

&lt;P&gt;It seems that a syncatically invalid batch won't be executed, and as such, neither the normal statements nor the exception handler are executed.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 08:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828641#M4859484</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T08:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828644#M4859487</link>
      <description>&lt;P&gt;yes, but it gets interesting if you fix the syntax error... he probably broke the cardinal rule "Always copy and paste your code, never type it in from scratch."&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 08:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828644#M4859487</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-10-08T08:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828645#M4859488</link>
      <description>&lt;P&gt;Oh, "lack of coffee" must be the reason: I focussed on the missing ";" as the &lt;EM&gt;one&lt;/EM&gt; difference, completely missing the execute/select change in line 4. And for sure: Your observation is more interesting:)&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 08:32:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828645#M4859488</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T08:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828646#M4859489</link>
      <description>&lt;P&gt;More interesting results: Testing with SA 11.0.1.2427, the first example &lt;EM&gt;does show an ISQL error dialog&lt;/EM&gt; - both with DBISQL and DBISQLC.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 08:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828646#M4859489</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T08:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828647#M4859490</link>
      <description>&lt;P&gt;Another good catch! ...and WORSE for me, because I was thinking about upgrading to a later EBF of V11. Sigh.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828647#M4859490</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-10-08T09:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828648#M4859491</link>
      <description>&lt;P&gt;Sadly, the only documented change in general exception-handling between these versions seems to be the following one (taken from the 2427 readme). But it deals with T-SQL and as such, might not at all relate to this: &lt;A href="http://search.sybase.com/kbx/changerequests?bug_id=623891"&gt;http://search.sybase.com/kbx/changerequests?bug_id=623891&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828648#M4859491</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T09:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828649#M4859492</link>
      <description>&lt;P&gt;To add: The statement block of interest is not T-SQL, as select sqldialect(...) will reveal. So I guess the link is not helpful (and the database options I use don't match the mentioned ones).&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828649#M4859492</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T09:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828650#M4859493</link>
      <description>&lt;P&gt;@Breck: Besides that, I really love your usage of the "catch" phrase: In well-known programming languages, that's the equivalence of SA's &lt;EM&gt;exception&lt;/EM&gt; clause. As such, I feel you are thrown on &lt;EM&gt;your own exception-handling&lt;/EM&gt; for your "&lt;EM&gt;Update MyApplication set version = V12;&lt;/EM&gt;" statement. - But that's no fun, indeed:(&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 09:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828650#M4859493</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T09:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828651#M4859494</link>
      <description>&lt;P&gt;@Breck:  Certainly did.  Edited
@Volker:  I did not know that about mixing the dialects in batches.  As I am picking up the language and taking some snippets from the book and copying some code from a blog I will be aware of that now, so please leave this answer even though I edited the question.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 13:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828651#M4859494</guid>
      <dc:creator>former_SQLA_member1694868</dc:creator>
      <dc:date>2010-10-08T13:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828652#M4859495</link>
      <description>&lt;P&gt;@Siger: No need to worry, we don't delete answers here... Glenn Paulley has written a great overview over the two dialects (and the resulting parsing problems) in his blog, cf. &lt;A href="http://iablog.sybase.com/paulley/2010/03/mixing-sql-dialects"&gt;http://iablog.sybase.com/paulley/2010/03/mixing-sql-dialects&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2010 13:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828652#M4859495</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-08T13:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828642#M4859485</link>
      <description>&lt;P&gt;FWIW, &lt;A href="http://sqlanywhere-forum.sap.com/users/77" rel="nofollow"&gt;&lt;STRONG&gt;John Smirnios&lt;/STRONG&gt;&lt;/A&gt; has identified the change in behaviour as a result of the fix &lt;A href="http://search.sybase.com/kbx/changerequests?bug_id=560044" rel="nofollow"&gt;560044&lt;/A&gt;, as stated in his comment on the "&lt;A href="http://sqlanywhere-forum.sap.com/questions/1188" rel="nofollow"&gt;Bugfix documentation question&lt;/A&gt;". &lt;/P&gt;

&lt;P&gt;As to the CR docs, the change happened in build 12.0.0.2330 and 11.0.1.2412.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;Don't expect me to explain the behaviour - I'm just the messenger here:)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2010 16:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828642#M4859485</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2010-10-12T16:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828653#M4859496</link>
      <description>&lt;P&gt;Due to that change, the evaluation of some constant expressions has changed from the time when cursors are opened to the time when values are fetched. I'm told that exception handlers only catch errors that occur during open, not fetch. Strictly speaking, then, the new behaviour is still "correct" but we also never like to change such fundamental behaviour in an EBF. From here, I'll let the developers who deal with those components figure out what, if anything, must be done. It's not my area of expertise.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2010 20:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828653#M4859496</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2010-10-12T20:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828643#M4859486</link>
      <description>&lt;P&gt;There is a difference in how errors are processed depending on whether the error occurs as part of executing a stored-procedure statement or instead it occurs while returning rows from a result set of the procedure that has been opened without error. Errors that are detected while processing a result set are not handled by the EXCEPTION clause if it is present. Instead, the error is returned to the consumer. This explains the original question because in the second case, the error is detected when the row is fetched from the result set.&lt;/P&gt;

&lt;P&gt;As noted by others, there is a difference in behavior with this statement between different versions of SA. The behavior change stems from change &lt;A href="http://search.sybase.com/kbx/changerequests?bug_id=560044" rel="nofollow"&gt;560044&lt;/A&gt;. This change causes the error to get generated as rows are fetched from the statement instead of when it is opened. This timing change only affects errors generated with expressions over constants. If the statement had contained something like the following, then behavior is unchanged (and an error is reported to the client):&lt;/P&gt;

&lt;LI-CODE lang="sql"&gt;begin
    select (YMD( dummy_col,1,1)) from sys.dummy;
EXCEPTION when others then
end
&lt;/LI-CODE&gt;

&lt;P&gt;With this example, the error can not be detected when the result set is opened, instead it occurs as the rows are fetched. As such, the error is not processed with the EXCEPTION clause and instead it is returned on the fetch.&lt;/P&gt;

&lt;P&gt;The purpose of change 560044 was not to affect the way exceptions are processed; the change is intended to avoid generating spurious errors that occur while constant expressions are evaluated at open time. In some cases, these constant expressions generated errors but the proper result set could be returned without evaluating the expressions (for example, because the result set was empty, or because other conditions prevented the expression from being needed). The change defers the error until the expression value is definitely needed.&lt;/P&gt;

&lt;P&gt;Breck, can you explain further (here or open a support case) how this change prevents you moving to a newer version. There may be some further refinements we can make to the change if we know the situations where you think the error should be generated at open time.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Oct 2010 17:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828643#M4859486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T17:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828654#M4859497</link>
      <description>&lt;P&gt;@Ivan: After your description I understand the differences between the situations.&lt;BR /&gt;
&lt;/P&gt;
&lt;P&gt;My original goal was to handle ANY error with the exception handler, but  it seems that some errors are unable to be handled and are passed on to the user.  Are there any other ways to handle these errors?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Oct 2010 17:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828654#M4859497</guid>
      <dc:creator>former_SQLA_member1694868</dc:creator>
      <dc:date>2010-10-16T17:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828655#M4859498</link>
      <description>&lt;P&gt;@Ivan: I am not woooorrrthy! Seriously, no support case, you have just explained why I sometimes see exceptions reach the browser window.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Oct 2010 08:43:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828655#M4859498</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-10-18T08:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Form an Exception Handler</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828656#M4859499</link>
      <description>&lt;P&gt;@Ivan: Let's skip lunch today, let's just open another can of worms here at our desks: &lt;A href="http://sqlanywhere-forum.sap.com/questions/1221/is-this-how-i-have-to-trap-exceptions-raised-by-the-final-select-in-a-web-service"&gt;http://sqlanywhere-forum.sap.com/questions/1221/is-this-how-i-have-to-trap-exceptions-raised-by-the-final-select-in-a-web-service&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Oct 2010 08:44:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-form-an-exception-handler/qaa-p/13828656#M4859499</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2010-10-18T08:44:24Z</dc:date>
    </item>
  </channel>
</rss>

