Hi Lee,

Regarding: ...I need to export a table from a SQLite database as a TAB
character delimited text file.

Try the following

.separator "\t"
.output ExportFile.txt
select * from MyTable;
.output stdout
 

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to