DF_INDEX_NATIVE_CREATED¶

Applies to: ORAFlex SQLFlex MYSQLFlex PGFlex DB2Flex

Use this attribute to verify if the index that maps to the DataFlex index was created correctly at the SQL backend

This is a ReadOnly attribute

Syntax

Get_Attribute DF_INDEX_NATIVE_CREATED of {FileNumber} {IndexNumber} to variable

Parameter

Description

FileNumber

Number of the file (Filename.File_Number)

IndexNumber

Number of the index

variable

True if created, false if not

Example

Open Customer

Handle  hFile
Integer iIndex
Boolean bCreated

Move Customer.File_Number to hFile
Move 1 To iIndex
Get_Attribute DF_INDEX_NATIVE_CREATED of hFile iIndex to bCreated