Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]SQL>[/blue] create table notmytable ( id number, html varchar2(1000) );
Table created.
[blue]SQL>[/blue] insert into notmytable values ( 1, '<b>sample data</b>' );
1 row created.
[blue]SQL>[/blue] insert into notmytable values ( 2, 'sentence1'||chr(13)||chr(10)||'<br>'||chr(13)||chr(10)||'sentence2' );
1 row created.
[blue]SQL>[/blue] select * from notmytable;
ID HTML
---------- -------------------------------------------------
1 <b>sample data</b>
2 sentence1
<br>
sentence2