The TEXT data type as class / TEXT data type methods |
Writes the containt of a TEXT to a file.
This method writes the containt of the current TEXT locator to the specified file.
If the file cannot be written, the error -8087 is raised.
MAIN DEFINE t TEXT LOCATE t IN MEMORY SELECT col_text INTO t FROM ... CALL t.writeFile("mydata") END MAIN