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.
create table m1 (field1 text, field2 varchar(255));
This is a text|<blank>
load from m1test.unl insert into m1;
select field1[1,4] from m1;
field1
This
unload to m1trans.unl select field2, field1 from m1;
delete from m1 where 1=1;
load from m1trans.unl insert into m1;