Hello,

In my opinion it shoud work as you expected. For me it works fine 
(7.4.3.14 and 7.3.0.32). But in the case no error shoud be returned but 
SQL_NOT_FOUND (100) (not an error). Of course no such info will be 
returned if you declare dbproc as:

create dbproc test( in id integer ) as
try
 delete from test.test where id = :id;
catch
 return;

instead of:

create dbproc test( in id integer ) as
try
 delete from test.test where id = :id;
catch
 stop( $rc, $errmsg );

Bye
Janusz
_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to