Uses of Interface
org.springframework.jdbc.core.simple.SimpleJdbcCallOperations
Packages that use SimpleJdbcCallOperations
Package
Description
Simplification layer for table inserts and stored procedure calls.
-
Uses of SimpleJdbcCallOperations in org.springframework.jdbc.core.simple
Classes in org.springframework.jdbc.core.simple that implement SimpleJdbcCallOperationsModifier and TypeClassDescriptionclassA SimpleJdbcCall is a multi-threaded, reusable object representing a call to a stored procedure or a stored function.Methods in org.springframework.jdbc.core.simple that return SimpleJdbcCallOperationsModifier and TypeMethodDescriptionSimpleJdbcCallOperations.declareParameters(SqlParameter... sqlParameters) Specify one or more parameters if desired.SimpleJdbcCallOperations.returningResultSet(String parameterName, RowMapper<?> rowMapper) Used to specify when a ResultSet is returned by the stored procedure and you want it mapped by aRowMapper.SimpleJdbcCallOperations.useInParameterNames(String... inParameterNames) Not used yet.SimpleJdbcCallOperations.withCatalogName(String catalogName) Optionally, specify the name of the catalog that contins the stored procedure.SimpleJdbcCallOperations.withFunctionName(String functionName) Specify the procedure name to be used - this implies that we will be calling a stored function.SimpleJdbcCallOperations.withNamedBinding()Indicates that parameters should be bound by name.SimpleJdbcCallOperations.withoutProcedureColumnMetaDataAccess()Turn off any processing of parameter meta-data information obtained via JDBC.SimpleJdbcCallOperations.withProcedureName(String procedureName) Specify the procedure name to be used - this implies that we will be calling a stored procedure.SimpleJdbcCallOperations.withReturnValue()Indicates the procedure's return value should be included in the results returned.SimpleJdbcCallOperations.withSchemaName(String schemaName) Optionally, specify the name of the schema that contins the stored procedure.