I am currently working with Oracle Apex version 5.1 and I am new to Apex pl/sql code and am having a little trouble reading it.
Can anyone tell me how to read the following code?
l_column_value_list := apex_plugin_util.get_data2 (
p_sql_statement => l_region_source,
p_min_columns => 4,
p_max_columns => null,
p_component_name => p_region.name,
p_bind_list => l_bind_list
);
Specifically, what does "apex_plugin_util_get_data2" return? I've looked up the documentation on the function and it hasn't helped me much. Does it return the number of rows of data in the table used in the query? That's what I thought based on how "l_column_value_list" is used later in the code, but I'm doubting that now because it is labeled as 'l_COLUMN_value_list".
I got it from the code that is used to produce the Gantt chart in the Sample Charts sample application.
Thank you in advance.