TEMP-TABLE-PREPARE() method
- Last Updated: January 22, 2026
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Once you have invoked all the methods that you need to fully define the temp-table fields and
indexes, you must use the TEMP-TABLE-PREPARE() method to finalize the definition
before you use the temp-table. You must pass an argument to the method that gives the
temp-table a name, as in this example:
|
Once you have invoked this method, the temp-table is in the prepared state. You can now
begin to use it, creating and deleting records in the temp-table, opening queries on the
table, and so forth. You cannot use the temp-table in any way until you prepare it.
After you use the TEMP-TABLE-PREPARE() method, you cannot invoke any of
the other methods to change its definition except the CLEAR method
discussed next.