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.
SQL> create table t1(a number,b long);
Table created.
SQL> insert into t1 values(1,'This is long');
1 row created.
SQL> commit;
Commit complete.
SQL> update t1 set b='This is updated long' where a=1;
1 row updated.
SQL> commit;
Commit complete.
SQL>