Skip to content

DF_DATABASE_DRIVER_THOUSANDS_SEPARATOR

Sets the driver decimal separator for ODBC drivers that do not use the US thousands separator.

Level

Database

Supported by

DataFlex ODBC Driver, revision 5 and higher

Type

Integer, temporary

Access

Read/Write

Values

ASCII value of separator character

Syntax

Use cli.pkg
Get_Attribute DF_DATABASE_DRIVER_THOUSANDS_SEPARATOR of {driverNumber} {databaseHandle} to {IntegerVariable}
Set_Attribute DF_DATABASE_DRIVER_THOUSANDS_SEPARATOR of {driverNumber} {databaseHandle} to {IntegerVariable}

Driver Configuration Keyword

Driver_Thousands_Separator

Remarks

ODBC demands that drivers use the US thousands separator in the supported SQL. Nevertheless, there are drivers that do not use this format, but rather a format that depends on the country settings of the machine or the database client software. For those environments, the driver thousands separator can be set.

Procedure ShowDBAttribute Integer iDriver Handle hDatabase
    Integer iAttribValue
    Get_Attribute DF_DATABASE_DRIVER_THOUSANDS_SEPARATOR of iDriver hDatabase to iAttribValue
    Showln "Thousands separator: " iAttribValue ", " (Character(iAttribValue))
End_Procedure

The sample code above shows the current setting for a given database. The database handle can be obtained via the DF_DATABASE_ID attribute.