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.
d W_MyFile e ds extname(MyFile)
d prefix(W_)
/free
// Read MyFile into data structure W_MyFile
Read MyRec MyFile;
...
// Fld1, Fld2, etc belong to file MyFile
Exec sql insert into MyNewFile ( Fld1, Fld2, ... )
values( :W_Fld1, :W_Fld2, ... );