Define the schema for a temp-table parameter
- Last Updated: January 16, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Defining the schema for an ABL temp-table (TABLE or TABLE-HANDLE)
parameter is a multi-step process.
To define the schema for a temp-table parameter:
-
If the parameter is for input or input-output, define
an ADO.NET
DataTableto hold the parameter value. -
Define a
TempTableMetaDataobject to hold the parameter schema. -
Add field descriptions to the
TempTableMetaDataobject. -
Add the
TempTableMetaDataobject and theDataTable(if applicable) as a temp-table parameter to yourParamArrayobject using the appropriate set parameter method.