LoadTabFile

Takes two parameters, FileName, bHasHeader

Usage:

FileName, bHasHeader
FileName, ["y"]

Description:

Given a local file name path, it is parsed into the WorkQuery using CRLF characters for Records and TAB characters for Fields. The file used with this function should be of a .txt, .tab, or .tsv extension.

As an optimization, this command does not correctly parse whitespace within a field, or handle quotes within quoted fields. Only use this command if the data is from a trusted source and these limitations are not an issue. For general purposes, the LoadTabFileWS command should be used instead.

This command applies both AnsiToUtf8$ and WebSafe$ to the data during the loading process. If these conversions are not desired, use a combination of LoadFile$ and TabStream or TabStreamWS instead.

Example:

LoadTabFile "Private/someData.tab"