Uses of Class
org.springframework.dao.InvalidDataAccessApiUsageException

Packages that use InvalidDataAccessApiUsageException
org.springframework.dao Exception hierarchy enabling sophisticated error handling independent of the data access approach in use.  
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.dao
 

Subclasses of InvalidDataAccessApiUsageException in org.springframework.dao
 class IncorrectResultSizeDataAccessException
          Data access exception thrown when a result was not of the expected size, for example when expecting a single row but getting 0 or more than 1 rows.
 

Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object that throw InvalidDataAccessApiUsageException
 void StoredProcedure.declareParameter(SqlParameter param)
          Declare a parameter.
 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.
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.
 

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.