FUNCTION db_stack RETURN debug_info_g.t_msg_list is l_stack debug_info_g.t_msg_list; FOR l_idx IN REVERSE 1 .. debug_info_g.g_db_stack_pos-1 LOOP IF debug_info_g.g_db_stack.exists(l_idx) THEN ...
I recently wrote a .NET web application for work. I always make a data access class with methods for getting data, but I usually just point the methods to stored procedures. This time, I decided to ...