Uses of Class
org.apache.cayenne.map.Procedure
Packages that use Procedure
Package
Description
Contains classes that handle JDBC interactions.
HSQLDB DbAdapter.
MySQL DbAdapter.
PostgreSQL DbAdapter.
Contains O/R mapping classes that store relational database
metadata information and map it to Java classes.
Defines standard queries supported by Cayenne and extension mechanism to create
custom queries.
-
Uses of Procedure in org.apache.cayenne.access.jdbc
Methods in org.apache.cayenne.access.jdbc that return ProcedureModifier and TypeMethodDescriptionprotected ProcedureProcedureAction.getProcedure()Returns stored procedure for an internal query. -
Uses of Procedure in org.apache.cayenne.access.translator.procedure
Methods in org.apache.cayenne.access.translator.procedure with parameters of type ProcedureModifier and TypeMethodDescriptionprotected StringDefaultProcedureTranslator.createSqlString(Procedure procedure, int callParamsSize) Creates an SQL String for the stored procedure call. -
Uses of Procedure in org.apache.cayenne.configuration
Methods in org.apache.cayenne.configuration with parameters of type ProcedureModifier and TypeMethodDescriptionBaseConfigurationNodeVisitor.visitProcedure(Procedure procedure) ConfigurationNodeVisitor.visitProcedure(Procedure procedure) EmptyConfigurationNodeVisitor.visitProcedure(Procedure procedure) -
Uses of Procedure in org.apache.cayenne.configuration.xml
Methods in org.apache.cayenne.configuration.xml that return Procedure -
Uses of Procedure in org.apache.cayenne.dba.hsqldb
Methods in org.apache.cayenne.dba.hsqldb with parameters of type ProcedureModifier and TypeMethodDescriptionprotected StringHSQLDBProcedureTranslator.createSqlString(Procedure procedure, int callParamsSize) Creates HSQLDB-compliant SQL to execute a stored procedure. -
Uses of Procedure in org.apache.cayenne.dba.mysql
Methods in org.apache.cayenne.dba.mysql with parameters of type ProcedureModifier and TypeMethodDescriptionprotected StringMySQLProcedureTranslator.createSqlString(Procedure procedure, int callParamsSize) -
Uses of Procedure in org.apache.cayenne.dba.postgres
Methods in org.apache.cayenne.dba.postgres with parameters of type ProcedureModifier and TypeMethodDescriptionprotected StringPostgresProcedureTranslator.createSqlString(Procedure procedure, int callParamsSize) -
Uses of Procedure in org.apache.cayenne.map
Fields in org.apache.cayenne.map declared as ProcedureMethods in org.apache.cayenne.map that return ProcedureModifier and TypeMethodDescriptionDataMap.getProcedure(String procedureName) Returns a Procedure for a given name or null if no such procedure exists.EntityResolver.getProcedure(String procedureName) MappingNamespace.getProcedure(String name) Returns Procedure for a given name, or null if no such Procedure is found in the MappingNamespace.ProcedureParameter.getProcedure()Returns the procedure that holds this parameter.Methods in org.apache.cayenne.map that return types with arguments of type ProcedureModifier and TypeMethodDescriptionDataMap.getProcedureMap()Returns a sorted unmodifiable map of Procedures in this DataMap keyed by name.DataMap.getProcedures()Returns stored procedures associated with this DataMap.EntityResolver.getProcedures()MappingNamespace.getProcedures()Returns all Procedures in the namespace.Methods in org.apache.cayenne.map with parameters of type ProcedureModifier and TypeMethodDescriptionvoidDataMap.addProcedure(Procedure procedure) Adds stored procedure to the list of procedures.voidProcedureParameter.setProcedure(Procedure procedure) Sets the procedure that holds this parameter. -
Uses of Procedure in org.apache.cayenne.query
Methods in org.apache.cayenne.query that return ProcedureModifier and TypeMethodDescriptionQueryMetadata.getProcedure()Returns a Procedure associated with a query or null if no such procedure exists.QueryMetadataProxy.getProcedure()Constructors in org.apache.cayenne.query with parameters of type ProcedureModifierConstructorDescriptionProcedureQuery(Procedure procedure) Creates a ProcedureQuery based on a Procedure object.ProcedureQuery(Procedure procedure, Class<?> resultType)