Hi experts.
I'm a beginner for SAP HANA hdbsql.
(This question is very elementary one...)
I'm wondering how to get the error code in hdbsql sotred procedure.
Could you please teach me how to do it?
For example, in case of Oracle PL/SQL, we can get the error code by using
-------------------------------------
Err_code NUMBER
Err_msg VACHAR2(55)
EXCEPTION
Err_code := SQLCODE;
Err_msg :=SUBSTR(SQLERRM,1,55);
-------------------------------------
Kind Regards
Yoh