DF_FILE_NAME_SPACE

Applies to: PGFlex

In Postgres, schemas are objects where all the tables,views and indexes are stored. Separate schemas are used to specify relational data. This attribute is used to set the name of the schema where a table is created. Schema’s do not account for any physical space but are merely used as theory to explain the order of a database.

Syntax

Get_Attribute DF_FILE_NAME_SPACE of {FileNumber} to {variable}
Set_Attribute DF_FILE_NAME_SPACE of {FileNumber} to {variable}

Parameter

Description

FileNumber

Number of the file

variable

Name of the Schema

Example

open ORDERHEA
Handle hFile
String sSchemaName

Set_Attribute DF_FILE_NAME_SPACE of hFile to "ORDERHEA"
Get_Attribute DF_FILE_NAME_SPACE of hFile To sSchemaName