The date separator used by the ODBC driver.
Driver
DataFlex ODBC Driver, revision 5 and higher
Integer, temporary
Read/Write
ASCII value of separator character
Use cli.pkg
Get_Attribute DF_DRIVER_DRIVER_DATE_SEPARATOR of {driverNumber} to {IntegerVariable}
Set_Attribute DF_DRIVER_DRIVER_DATE_SEPARATOR of {driverNumber} to {IntegerVariable}
ODBC demands that drivers use the military format (yyyy-mm-dd) 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 date separator can be set.
This default value is copied to database level when logging in to the database. The actual value in use for an active connection is that on database level. This attribute merely reflects a default.
Function DriverIndex String sDriver Returns Integer
String sCurrentDriver
Integer iNumberOfDrivers iDriver iCount
Move 0 to iDriver
Get_Attribute DF_NUMBER_DRIVERS to iNumberOfDrivers
For iCount From 1 To iNumberOfDrivers
Get_Attribute DF_DRIVER_NAME of iCount To sCurrentDriver
If ( Uppercase(sCurrentDriver) = Uppercase(sDriver) ) Begin
Move iCount to iDriver
End
Loop
Function_Return iDriver
End_Function // DriverIndex
Procedure ShowDriverAttribute
Integer iAttribValue iDriver
Get DriverIndex "MSSQLDRV" to iDriver
Get_Attribute DF_DRIVER_DRIVER_DATE_SEPARATOR of iDriver to iAttribValue
Showln "Date separator: " iAttribValue ", " (Character(iAttribValue))
End_Procedure
The sample code above shows the current setting for a given driver.