DatasourceASCIIDecimalSeparator

This TurboIntegrator local variable sets the decimal separator to be used in any conversion of a string to a number or a number to a string. If you set this variable you must also set the DatasourceASCIIThousandSeparator variable.

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

Syntax

DatasourceASCIIDecimalSeparator='Char';

or

DatasourceASCIIDecimalSeparator=Char(xx);

Argument

Description

Char

The ASCII character to be used as a separator.

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 comma character (,) as the separator.

DatasourceASCIIDecimalSeparator=',';
DatasourceASCIIDecimalSeparator=Char(44);