Class GenericStoredProcedure
java.lang.Object
org.springframework.jdbc.object.RdbmsOperation
org.springframework.jdbc.object.SqlCall
org.springframework.jdbc.object.StoredProcedure
org.springframework.jdbc.object.GenericStoredProcedure
- All Implemented Interfaces:
- InitializingBean
Concrete implementation making it possible to define the RDBMS stored procedures
 in an application context without writing a custom Java implementation class.
 
 This implementation does not provide a typed method for invocation so executions
 must use one of the generic StoredProcedure.execute(java.util.Map) or
 StoredProcedure.execute(org.springframework.jdbc.core.ParameterMapper) methods.
- Author:
- Thomas Risberg
- See Also:
- 
Field SummaryFields inherited from class org.springframework.jdbc.object.RdbmsOperationlogger
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.springframework.jdbc.object.StoredProcedureallowsUnusedParameters, declareParameter, execute, execute, executeMethods inherited from class org.springframework.jdbc.object.SqlCallcompileInternal, getCallString, isFunction, isSqlReadyForUse, newCallableStatementCreator, newCallableStatementCreator, onCompileInternal, setFunction, setSqlReadyForUseMethods inherited from class org.springframework.jdbc.object.RdbmsOperationafterPropertiesSet, checkCompiled, compile, getDeclaredParameters, getGeneratedKeysColumnNames, getJdbcTemplate, getResultSetType, getSql, isCompiled, isReturnGeneratedKeys, isUpdatableResults, resolveSql, setDataSource, setFetchSize, setGeneratedKeysColumnNames, setJdbcTemplate, setMaxRows, setParameters, setQueryTimeout, setResultSetType, setReturnGeneratedKeys, setSql, setTypes, setUpdatableResults, supportsLobParameters, validateNamedParameters, validateParameters
- 
Constructor Details- 
GenericStoredProcedurepublic GenericStoredProcedure()
 
-