GetTableInfoByPosition( ) method
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Returns information about the position of a temp-table from a list of temp-tables. This is
based on the number returned by the TempTableCount property. The method
raises an error if it is a not a valid position (not within the
TempTableCount range).
Return type: VOID
Access: PUBLIC STATIC
Applies to: Progress.Database.TempTableInfo class
Syntax
This method supports two overloaded versions. The first version returns the temp-table name and name of the procedure or class that instantiated the temp-table.
|
The second version returns the handle to the temp-table and the name of the procedure or class that instantiated the temp-table.
|
- element
- An integer expression which evaluates to the position of a given temp-table from a
list of temp-tables. It must be a value between 1 and
TempTableCount. - table-name
- Returns a CHARACTER string with the name of the temp-table.
- table-handle
- Returns the handle to the temp-table specified by the element parameter.
- proc-name
- Returns a CHARACTER string with the procedure (or class) name. For a static
temp-table, it is the procedure with the
DEFINE TEMP-TABLEstatement. For a dynamic temp-table, it is the procedure which executes theTEMP-TABLE-PREPAREmethod. The name of the procedure is the name that is specified when you runmydir/test.p.
The following example shows the temp-tables that are currently in the scope for monitoring deployed clients.
|