相关文章推荐
强健的四季豆  ·  idea中 ...·  4 周前    · 
急躁的打火机  ·  gdb ...·  1 年前    · 
Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects.
Context metadata abstraction for the configuration and execution of table inserts and stored procedure calls.
JdbcTemplate variant with named parameter support.
Simplification layer for common JDBC interactions.
The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects.

Uses of SqlParameter in org.springframework.jdbc.core

Modifier and Type
Class
Description
class
Common base class for ResultSet-supporting SqlParameters like SqlOutParameter and SqlReturnResultSet .
class
Subclass of SqlOutParameter to represent an INOUT parameter.
class
Subclass of SqlParameter to represent an output parameter.
class
Object to represent an SQL parameter value, including parameter meta-data such as the SQL type and the scale for numeric values.
class
Represents a returned ResultSet from a stored procedure call.
class
Represents a returned update count from a stored procedure call.
Methods in org.springframework.jdbc.core that return types with arguments of type SqlParameter
Modifier and Type
Method
Description
SqlParameter. sqlTypesToAnonymousParameterList (int... types)
Convert a list of JDBC types, as defined in java.sql.Types , to a List of SqlParameter objects as used in this package.
Methods in org.springframework.jdbc.core with parameters of type SqlParameter
Modifier and Type
Method
Description
CallableStatementCreatorFactory. addParameter ( SqlParameter param)
Add a new declared parameter.
PreparedStatementCreatorFactory. addParameter ( SqlParameter param)
Add a new declared parameter.
static void
StatementCreatorUtils. setParameterValue ( PreparedStatement ps, int paramIndex, SqlParameter param, Object inValue)
Set the value for a parameter.
Method parameters in org.springframework.jdbc.core with type arguments of type SqlParameter
Modifier and Type
Method
Description
JdbcOperations. call ( CallableStatementCreator csc, List < SqlParameter > declaredParameters)
Execute an SQL call using a CallableStatementCreator to provide SQL and any required parameters.
JdbcTemplate. call ( CallableStatementCreator csc, List < SqlParameter > declaredParameters)
protected Map < String , Object >
Extract output parameters from the completed stored procedure.
protected Map < String , Object >
JdbcTemplate. extractReturnedResults ( CallableStatement cs, List < SqlParameter > updateCountParameters, List < SqlParameter > resultSetParameters, int updateCount)
Extract returned ResultSets from the completed stored procedure.
Constructors in org.springframework.jdbc.core with parameters of type SqlParameter
Modifier
Constructor
Description
Copy constructor.
Create a new SqlParameterValue based on the given SqlParameter declaration.
Constructor parameters in org.springframework.jdbc.core with type arguments of type SqlParameter
Modifier
Constructor
Description
CallableStatementCreatorFactory ( String callString, List < SqlParameter > declaredParameters)
Create a new factory with the given SQL and the given parameters.
Create a new factory with the given SQL and parameters.

Uses of SqlParameter in org.springframework.jdbc.core.metadata

Modifier and Type
Method
Description
CallMetaDataProvider. createDefaultInOutParameter ( String parameterName, CallParameterMetaData meta)
Create a default in/out parameter based on the provided meta-data.
GenericCallMetaDataProvider. createDefaultInOutParameter ( String parameterName, CallParameterMetaData meta)
CallMetaDataProvider. createDefaultInParameter ( String parameterName, CallParameterMetaData meta)
Create a default in parameter based on the provided meta-data.
GenericCallMetaDataProvider. createDefaultInParameter ( String parameterName, CallParameterMetaData meta)
CallMetaDataProvider. createDefaultOutParameter ( String parameterName, CallParameterMetaData meta)
Create a default out parameter based on the provided meta-data.
GenericCallMetaDataProvider. createDefaultOutParameter ( String parameterName, CallParameterMetaData meta)
OracleCallMetaDataProvider. createDefaultOutParameter ( String parameterName, CallParameterMetaData meta)
PostgresCallMetaDataProvider. createDefaultOutParameter ( String parameterName, CallParameterMetaData meta)
CallMetaDataContext. createReturnResultSetParameter ( String parameterName, RowMapper <?> rowMapper)
Create a ReturnResultSetParameter/SqlOutParameter depending on the support provided by the JDBC driver used for the database in use.
Methods in org.springframework.jdbc.core.metadata that return types with arguments of type SqlParameter
Modifier and Type
Method
Description
CallMetaDataContext. getCallParameters ()
Get the List of SqlParameter objects to be used in call execution.
CallMetaDataContext. reconcileParameters ( List < SqlParameter > parameters)
Reconcile the provided parameters with available meta-data and add new ones where appropriate.
Modifier and Type
Method
Description
protected String
CallMetaDataContext. createParameterBinding ( SqlParameter parameter)
Build the parameter binding fragment.
Method parameters in org.springframework.jdbc.core.metadata with type arguments of type SqlParameter
Modifier and Type
Method
Description
CallMetaDataContext. processParameters ( List < SqlParameter > parameters)
Process the list of parameters provided, and if procedure column meta-data is used, the parameters will be matched against the meta-data information and any missing ones will be automatically included.
CallMetaDataContext. reconcileParameters ( List < SqlParameter > parameters)
Reconcile the provided parameters with available meta-data and add new ones where appropriate.

Uses of SqlParameter in org.springframework.jdbc.core.namedparam

Methods in org.springframework.jdbc.core.namedparam that return types with arguments of type SqlParameter
Modifier and Type
Method
Description
NamedParameterUtils. buildSqlParameterList ( ParsedSql parsedSql, SqlParameterSource paramSource)
Convert parameter declarations from an SqlParameterSource to a corresponding List of SqlParameters.
Method parameters in org.springframework.jdbc.core.namedparam with type arguments of type SqlParameter
Modifier and Type
Method
Description
static Object []
NamedParameterUtils. buildValueArray ( ParsedSql parsedSql, SqlParameterSource paramSource, List < SqlParameter > declaredParams)
Convert a Map of named parameter values to a corresponding array.

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

Methods in org.springframework.jdbc.core.simple that return types with arguments of type SqlParameter
Modifier and Type
Method
Description
AbstractJdbcCall. getCallParameters ()
Get a List of all the call parameters to be used for call.
Modifier and Type
Method
Description
AbstractJdbcCall. addDeclaredParameter ( SqlParameter parameter)
Add a declared parameter to the list of parameters for the call.
SimpleJdbcCall. declareParameters ( SqlParameter ... sqlParameters)
SimpleJdbcCallOperations. declareParameters ( SqlParameter ... sqlParameters)
Specify one or more parameters if desired.

Uses of SqlParameter in org.springframework.jdbc.object

Methods in org.springframework.jdbc.object that return types with arguments of type SqlParameter
Modifier and Type
Method
Description
RdbmsOperation. getDeclaredParameters ()
Return a list of the declared SqlParameter objects.
Methods in org.springframework.jdbc.object with parameters of type SqlParameter
Modifier and Type
Method
Description
RdbmsOperation. declareParameter ( SqlParameter param)
Declare a parameter for this operation.
StoredProcedure. declareParameter ( SqlParameter param)
Declare a parameter.
RdbmsOperation. setParameters ( SqlParameter ... parameters)
Add one or more declared parameters.