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.
USE MyTable
COPY TO SomeFile.txt SDF
* Get tables names into an array
OPEN DATABASE MyDatabase
lnCount = ADBOBJECTS(laTables, "TABLE")
* Loop through the array
FOR lnI = 1 TO lnCount
USE (laTables(lnI))
* Make the output filename the same as the table's,
* but with TXT instead of DBF
lcFile = FORCEEXT(laTables(lnI))
* Copy the table to SDF
COPY TO (lcFile) SDF
ENDFOR