public static class MetadataAPIHelper.ShowParametersInfo extends Object
This class represents information about stored procedure parameters including their name, type, and position. Used by JDBC metadata methods like getProcedureColumns() and getFunctionColumns() to provide structured access to parameter information.
DatabaseMetaData.getProcedureColumns(String, String, String, String),
DatabaseMetaData.getFunctionColumns(String, String, String, String),
MetadataServerProxy.getProcedureColumns(String, String, String, String, boolean),
MetadataServerProxy.getFunctionColumns(String, String, String, String, boolean)| Constructor and Description |
|---|
ShowParametersInfo(String databaseName,
String schemaName,
String procedureName,
String functionName,
String parameterName,
String ordinalPosition,
String parameterType,
String dataType,
String characterMaximumLength,
String numericPrecision,
String numericScale) |
| Modifier and Type | Method and Description |
|---|---|
String |
getCharacterMaximumLength() |
String |
getDatabaseName() |
String |
getDataType() |
String |
getFunctionName() |
String |
getNumericPrecision() |
String |
getNumericScale() |
String |
getOrdinalPosition() |
String |
getParameterName() |
String |
getParameterType() |
String |
getProcedureName() |
String |
getSchemaName() |
public String getDatabaseName()
public String getSchemaName()
public String getProcedureName()
public String getFunctionName()
public String getParameterName()
public String getOrdinalPosition()
public String getParameterType()
public String getDataType()
public String getCharacterMaximumLength()
public String getNumericPrecision()
public String getNumericScale()
Copyright © 2026 Amazon.com Inc.. All rights reserved.