SELECT Data FROM CURSOR of PACKAGE, print it
问题 I want to print data of Cursor_pkg.c1.row_emp , for ex: Cursor_pkg.c1.row_emp.last_name that would be exist in Cursor_pkg.row_emp after Cursor_pkg_func.Print_Cur procedure would work. How can I do it? I create PACKAGE with cursor and rec I create PACKAGE with procedure that fetch cursor data in rec I want to output fetched data. How? There is two questions: I want to output data from package emp_rec (row) and I want to output it directly from PACKAGE Cursor_pkg_func procedure P.S. The main