DF_FILE_SUPPRESS_DATABASENAME_OUTPUT¶
Applies to: SQLFlex MYSQLFlex PGFlex
Use this attribute to specify whether the DATABASE_NAME option will be included in the INT file. If set to True, the DATABASE_NAME option will not be included in the INT file, if set to false, the DATABASE_NAME option will be included in the INT file. This has two uses. The first is during a Structure_Start i.e. table creation/modification. The other is when using the OUTPUT_INT_FILE command. Set this attribute before the OUTPUT_INT_FILE to indicate how the INT file will be written. This name indicates a backwards logic so take note that setting it to true will NOT include the DATABASE_NAME in the INT file.
Default Value: False
Syntax
Get_Attribute DF_FILE_SUPPRESS_DATABASENAME_OUTPUT of {FileNumber} to {variable}
Set_Attribute DF_FILE_SUPPRESS_DATABASENAME_OUTPUT of {FileNumber} to {variable}
Parameter |
Description |
---|---|
FileNumber |
Number of the file |
variable |
Boolean variable. True to not include, false to include in INT. |
Example
Open Customer
Set_Attribute DF_FILE_SUPPRESS_DATABASENAME_OUTPUT of Customer.File_Number to True
OUTPUT_INT_FILE for Customer.File_Number to "c:\temp\test.int"
Close Customer