Uses of Interface
org.springframework.jdbc.core.simple.SimpleJdbcCallOperations

Packages that use SimpleJdbcCallOperations
org.springframework.jdbc.core.simple Simplification layer over JdbcTemplate for Java 5 and above. 
 

Uses of SimpleJdbcCallOperations in org.springframework.jdbc.core.simple
 

Classes in org.springframework.jdbc.core.simple that implement SimpleJdbcCallOperations
 class SimpleJdbcCall
          A 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 SimpleJdbcCallOperations
 SimpleJdbcCallOperations SimpleJdbcCallOperations.declareParameters(SqlParameter... sqlParameters)
          Specify one or more parameters if desired.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.returningResultSet(java.lang.String parameterName, ParameterizedRowMapper rowMapper)
          Used to specify when a ResultSet is returned by the stored procedure and you want it mapped by a RowMapper.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.useInParameterNames(java.lang.String... inParameterNames)
          Not used yet
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withCatalogName(java.lang.String catalogName)
          Optionally, specify the name of the catalog that contins the stored procedure.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withFunctionName(java.lang.String functionName)
          Specify the procedure name to be used - this implies that we will be calling a stored function.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withoutProcedureColumnMetaDataAccess()
          Turn off any processing of parameter meta data information obtained via JDBC.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withProcedureName(java.lang.String procedureName)
          Specify the procedure name to be used - this implies that we will be calling a stored procedure.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withReturnValue()
          Indicates the procedure's return value should be included in the results returned.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.withSchemaName(java.lang.String schemaName)
          Optionally, specify the name of the schema that contins the stored procedure.
 



Copyright © 2002-2008 The Spring Framework.