Package | Description |
---|---|
org.apache.cayenne.access.jdbc |
Contains classes that handle JDBC interactions.
|
org.apache.cayenne.access.translator | |
org.apache.cayenne.access.translator.procedure | |
org.apache.cayenne.configuration | |
org.apache.cayenne.map |
Contains O/R mapping classes that store relational database
metadata information and map it to Java classes.
|
Constructor and Description |
---|
ColumnDescriptor(ProcedureParameter parameter)
Creates a ColumnDescriptor from stored procedure parameter.
|
Modifier and Type | Method and Description |
---|---|
ProcedureParameter |
ProcedureParameterBinding.getParameter() |
Constructor and Description |
---|
ProcedureParameterBinding(ProcedureParameter procedureParameter) |
Modifier and Type | Field and Description |
---|---|
protected List<ProcedureParameter> |
ProcedureTranslator.callParams |
Modifier and Type | Method and Description |
---|---|
protected void |
ProcedureTranslator.setInParam(CallableStatement stmt,
ProcedureParameter param,
Object val,
int pos)
Sets a single IN parameter of the CallableStatement.
|
protected void |
ProcedureTranslator.setOutParam(CallableStatement stmt,
ProcedureParameter param,
int pos)
Sets a single OUT parameter of the CallableStatement.
|
Modifier and Type | Method and Description |
---|---|
T |
BaseConfigurationNodeVisitor.visitProcedureParameter(ProcedureParameter parameter) |
T |
ConfigurationNodeVisitor.visitProcedureParameter(ProcedureParameter parameter) |
Modifier and Type | Field and Description |
---|---|
protected List<ProcedureParameter> |
Procedure.callParameters |
Modifier and Type | Method and Description |
---|---|
ProcedureParameter |
Procedure.getResultParam()
Returns parameter describing the return value of the StoredProcedure, or null if
procedure does not support return values.
|
Modifier and Type | Method and Description |
---|---|
List<ProcedureParameter> |
Procedure.getCallOutParameters()
Returns a list of OUT and INOUT call parameters.
|
List<ProcedureParameter> |
Procedure.getCallParameters()
Returns an unmodifiable list of call parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
Procedure.addCallParameter(ProcedureParameter param)
Adds new call parameter to the stored procedure.
|
Modifier and Type | Method and Description |
---|---|
void |
Procedure.setCallParameters(List<ProcedureParameter> parameters) |
Copyright © 2001–2019 Apache Cayenne. All rights reserved.