Hi Anton,
Thanks a lot. This Plugin seem to be very useful, but I need to export data from a TABLE TYPE (and not with select, as you wrote). how can I implement this?
TYPE Elad_Tbl_T IS TABLE OF Elad_Rec_T index by binary_integer;
l_my_tbl_inst Elad_Tbl_T;
In my procedure, I enter all the business logic, in that table type (l_my_tbl_inst).
instead of:
as_xlsx.query2sheet( ‘select * from dual’ );
I want to write, something like that:
as_xlsx.query2sheet( ‘l_my_tbl_inst’ );
Thanks in advanced,
Elad