Returns information about a temp-table when the ID is specified. The ID is a numeric value that identifies the temp-table and is maintained by the ABL virtual machine (AVM). If the ID is valid for an existing temp-table, this method returns TRUE. Otherwise, it returns FALSE.
Return type: LOGICAL
Access: PUBLIC STATIC
Applies to: Progress.Database.TempTableInfo class
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.
GetTableInfoByID( INPUT temp-table-id AS INTEGER, OUTPUT table-name AS CHARACTER, OUTPUT proc-name AS CHARACTER ) |
The second version returns the handle to the temp-table and the name of the procedure or class that instantiated the temp-table.
GetTableInfoByID( INPUT temp-table-id AS INTEGER, OUTPUT table-handle AS HANDLE, OUTPUT proc-name AS CHARACTER ) |