× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



On 8/27/2024 11:10 AM, Dave wrote:

what's the "right" way of doing this after execution of the sql statement?

Use sql count() and check for 0?
Get the condition of the first line that doesn't satisfy the search
criteria and check that?
Ignore all the host variables and check for sqlcode = 100?

I think this is highly dependent on the scenario, but I'll share my methodology as a starting place for discussion.

exec sql fetch...
select;
when sqlstate = SQLNoData
...
when sqlstate = SQLNormal
...
when sqlstate = SQLTrunc
...
// unexpected error needs further diagnosis
other
dump(a) 'unique eyecatcher'
// email message to programming staff
// create user-friendly message for end user
endsl;

SQLSTATE has the advantage that the first two characters are the 'class' of the result. '00' are 'normal', '01' are 'warning', etc. Depending on the kind of granularity you want, this is very cool.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.