DF_FILE_CASING¶

Applies to: ORAFlex SQLFlex MYSQLFlex PGFlex DB2Flex

Controls the filename and column name casing. You can set this to either keep the file case, force to lower case or force to uppercase.

Syntax

Set_Attribute DF_FILE_CASING of {FileNumber} to {FILE_CASING_KEEP|FILE_CASING_LOWER|FILE_CASING_UPPER}
Get_Attribute DF_FILE_CASING of {FileNumber} to {variable}

Parameter

Description

FileNumber

Number of the file

variable

integer set to one of the above values.

Example

open Customer
Handle hFile
Integer eCasing

Move Customer.File_Number to hFile

Structure_Start hFile "ORA_DRV"
   Set_Attribute DF_FILE_CASING of hFile to FILE_CASING_KEEP
Structure_End hFile DF_STRUCTEND_OPT_NONE "." 0


Get_Attribute DF_FILE_CASING of hFile to eCasing