protected static class MetadataAPIHelper.ProcedureFunctionColumnData extends Object
These JDBC metadata methods require a "specific name" to uniquely identify procedures/functions that may have the same name but different parameter signatures (overloading). The specific name is constructed by combining the procedure/function name with its argument list, which matches the format returned by SHOW PROCEDURES/SHOW FUNCTIONS commands.
This class associates the specific name with the complete parameter information retrieved from SHOW PARAMETERS, enabling proper mapping between the metadata calls and the underlying database objects.
Usage Pattern:
| Constructor and Description |
|---|
ProcedureFunctionColumnData(String specificName,
List<MetadataAPIHelper.ShowParametersInfo> resultSet) |
| Modifier and Type | Method and Description |
|---|---|
List<MetadataAPIHelper.ShowParametersInfo> |
getResultSet() |
String |
getSpecificName() |
public ProcedureFunctionColumnData(String specificName, List<MetadataAPIHelper.ShowParametersInfo> resultSet)
public String getSpecificName()
public List<MetadataAPIHelper.ShowParametersInfo> getResultSet()
Copyright © 2025 Amazon.com Inc.. All rights reserved.