DatasourceASCIIDelimiter

This TurboIntegrator local variable sets the ASCII character to be used as a field delimiter when the DatasourceType is 'CHARACTERDELIMITED".

The character specified must be a standard ASCII printable character, with a decimal value between 33 and 127 inclusive.

Syntax

DatasourceASCIIDelimiter='Char';

or

DatasourceASCIIDelimiter=Char(xx);

Argument

Description

Char

The ASCII character to be used as a delimiter.

The character can be specified as a character enclosed in single quotes, or as an ASCII Char decimal code without quotes.

Either of the following examples sets the hyphen character (-) as the field delimiter.

DatasourceASCIIDelimiter='-';
DatasourceASCIIDelimiter=Char(45);