databaseexporttsv
TEXTFILE
The databaseexporttsv statement exports selected records in the current database in TSV format (tab separated) to a text file.
Parameters
This statement has one parameter:
textfile – path and name of text file, or “” to ask user.
Description
This statement exports selected records in the current database in TSV format (tab separated) to a text file. Only visible (non hidden) fields are included in the export. Here is an example that exports the selected records to a file named Mailing List.txt.
databaseexporttsv "~/Dropbox/MailingList.txt"
Note: This statement is used by the File>Export>Text (Tab Separated) menu command.
See Also
- csvexportline( -- generates a comma delimited line of data containing all the fields in the current record.
- csvexportlinevisiblecells( -- generates a comma delimited line of data containing all the visible (non hidden) fields in the current record.
- csvquoted( -- adds quotes if necessary for CSV text (RFC 4180).
- databaseexportcsv -- exports selected records in the current database in CSV format (comma separated) to a text file.
- databaseexportusingformula -- exports selected records in the current database to a text file, using a formula.
- downloadpartialdatabase -- downloads specified components of the current database from the server. The current database must be shared.
- export -- exports the selected rows in the current database into a text file.
- HTML Export -- custom exports into an HTML file.
- savepartialdatabase -- saves specified components of the current database, leaving other components out.
- Text Export -- exporting a database into a text or HTML file.
- Text Export Wizard -- custom exports into a text or HTML file.
- tsvtocsv( -- converts tab separated text into comma separated text.
- tsvtojson( -- converts tab separated text into JSON formatted text.
History
10.0 | New | New in this version. |