'How to add a custom table with data from the database to the application in Oracle APEX?
I need to add to an application in Oracle APEX a small module similar to static HTML but which retrieves data from a database.
That is, a customized table with data from the database.
Is it possible to do something like this in Oracle APEX?
Solution 1:[1]
OK I used PL/SQL Dynamic content:
declare
begin
for rec in (select CATEGORY_TITLE from TBL_CATEGORY)
loop
htp.p('<table style="border: 2px solid #eee;">');
htp.p('<tr>');
htp.p('<td>'||'Category: '||'</td>'||'<td>'||rec.CATEGORY_TITLE||'</td>'||'<td>'||'</td>'||'<td>'||'</td>');
htp.p('</tr>');
htp.p('</table>');
htp.p('<br>');
end loop;
end;
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
