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.
Example:
* --- Run a SQL Query against an 'Open' data table to produce results ---
SELECT * FROM MyDataTable WHERE <whatever> INTO CURSOR Results READWRITE
Example:
* --- 'Open' (make available) a Data Table into a VFP data 'work area' ---
* --- the [b]IN 0[/b] tells VFP to 'open' it into the [u]next[/u] available data work area ---
USE ThisDataTable IN 0
* --- Since this data table may be one of MANY concurrently 'available' data tables, you have to 'select' one to be currently 'active' ---
SELECT ThisDataTable
<do whatever on ThisTable>