I am relatively new to PL / SQL (Oracle). I can successfully complete my task. After modular programming, I split my program into small PL / SQL blocks. In addition, I have nested BEGIN-ENDcode. (For exception handling)
When my code base began to grow, I could see many nested blocks inside, and I could not identify the corresponding ENDfor each block BEGIN. (When the blocks are larger). The same case with nested FOR LOOPtoo. I agree that there are no curly braces in PL / SQL.
I have improved the indentation of my code as much as possible, and to some extent the code can now be read. But still, if someone else wants to read my code, I get the feeling that my code may not be easy to pass.
Do you guys offer any suggestions to solve my problem?
user3134415
source
share