DatasourceASCIIQuoteCharacter
This TurboIntegrator local variable sets the ASCII character used to enclose the fields of the source file when DatasourceType is 'CHARACTERDELIMITED'.
The character specified must be a standard ASCII printable character, with a decimal value between 33 and 127 inclusive.
Syntax
DatasourceASCIIQuoteCharacter='Char';
or
DatasourceASCIIQuoteCharacter=Char(xx);
Argument |
Description |
---|---|
Char |
The ASCII character that encloses fields in the data source. 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 asterisk character (*) as the field delimiter.
DatasourceASCIIQuoteCharacter='*';
DatasourceASCIIQuoteCharacter=Char(42);