Uses of Class
org.springframework.dao.InvalidDataAccessApiUsageException

Packages that use InvalidDataAccessApiUsageException
org.springframework.jdbc.object The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects. 
org.springframework.orm.jdo Package providing integration of JDO with Spring concepts. 
 

Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object that throw InvalidDataAccessApiUsageException
 void StoredProcedure.declareParameter(SqlParameter p)
          Overridden method.
 java.util.Map StoredProcedure.execute(java.util.Map inParams)
          Execute the stored procedure.
 java.util.Map StoredProcedure.execute(ParameterMapper inParamMapper)
          Execute the stored procedure.
 int SqlUpdate.update(java.lang.Object[] args)
          Generic method to execute the update given arguments.
protected  java.lang.Object SqlFunction.mapRow(java.sql.ResultSet rs, int rowNum)
          This implementation of this method extracts a single value from the single row returned by the function.
 void RdbmsOperation.setTypes(int[] types)
          Add anonymous parameters, specifying only their SQL types as defined in the java.sql.Types class.
 void RdbmsOperation.declareParameter(SqlParameter param)
          Declare a parameter.
 void RdbmsOperation.compile()
          Compile this query.
protected abstract  void RdbmsOperation.compileInternal()
          Subclasses must implement to perform their own compilation.
protected  void RdbmsOperation.validateParameters(java.lang.Object[] parameters)
          Validate the parameters passed to an execute method based on declared parameters.
 

Constructors in org.springframework.jdbc.object that throw InvalidDataAccessApiUsageException
SqlFunction(javax.sql.DataSource ds, java.lang.String sql, int[] types, int retType)
          Create a new SQLFunction object with SQL, parameters and a return type
 

Uses of InvalidDataAccessApiUsageException in org.springframework.orm.jdo
 

Subclasses of InvalidDataAccessApiUsageException in org.springframework.orm.jdo
 class JdoUsageException
          JDO-specific subclass of DataAccessException, for JDO usage exception that do not match any concrete org.springframework.dao exceptions.
 



Copyright (C) 2003-2004 The Spring Framework Project.