站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 1.2.9 API 文档英文版

Uses of Class org.springframework.jdbc.core.SqlParameter (Spring Framework) - Spring Framework 1.2.9 API 文档英文版


Uses of Class
org.springframework.jdbc.core.SqlParameter

Packages that use SqlParameter
org.springframework.jdbc.core Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. 
org.springframework.jdbc.object The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects. 
 

Uses of SqlParameter in org.springframework.jdbc.core
 

Subclasses of SqlParameter in org.springframework.jdbc.core
 class ResultSetSupportingSqlParameter
          Common base class for ResultSet-supporting SqlParameters like SqlOutParameter and SqlReturnResultSet.
 class SqlOutParameter
          Subclass of SqlParameter to represent an output parameter.
 class SqlReturnResultSet
          Represents a returned ResultSet from a stored procedure call.
 

Methods in org.springframework.jdbc.core with parameters of type SqlParameter
 void PreparedStatementCreatorFactory.addParameter(SqlParameter param)
          Add a new declared parameter.
 void CallableStatementCreatorFactory.addParameter(SqlParameter param)
          Add a new declared parameter.
static void StatementCreatorUtils.setParameterValue(PreparedStatement ps, int paramIndex, SqlParameter declaredParam, Object inValue)
          Set the value for a parameter.
 

Uses of SqlParameter in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object with parameters of type SqlParameter
 void StoredProcedure.declareParameter(SqlParameter param)
          Declare a parameter.
 void RdbmsOperation.declareParameter(SqlParameter param)
          Declare a parameter.
 



Copyright (c) 2002-2007 The Spring Framework Project.