The Spring Framework

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.jdbc.support Support classes for the JDBC framework, used by the classes in the jdbc.core and jdbc.object packages. 
org.springframework.orm.hibernate Package providing integration of Hibernate 2.1 with Spring concepts. 
org.springframework.orm.hibernate3 Package providing integration of Hibernate3 with Spring concepts. 
org.springframework.orm.jdo Package providing integration of JDO (Java Date Objects) with Spring concepts. 
 

Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object that throw InvalidDataAccessApiUsageException
 void RdbmsOperation.compile()
          Compile this query.
protected abstract  void RdbmsOperation.compileInternal()
          Subclasses must implement this template method to perform their own compilation.
 void StoredProcedure.declareParameter(SqlParameter param)
          Declare a parameter.
 void RdbmsOperation.declareParameter(SqlParameter param)
          Declare a parameter for this operation.
 void RdbmsOperation.setTypes(int[] types)
          Add anonymous parameters, specifying only their SQL types as defined in the java.sql.Types class.
protected  void RdbmsOperation.validateNamedParameters(Map parameters)
          Validate the named parameters passed to an execute method based on declared parameters.
protected  void RdbmsOperation.validateParameters(Object[] parameters)
          Validate the parameters passed to an execute method based on declared parameters.
 

Uses of InvalidDataAccessApiUsageException in org.springframework.jdbc.support
 

Methods in org.springframework.jdbc.support that throw InvalidDataAccessApiUsageException
 Number KeyHolder.getKey()
          Retrieve the first item from the first map, assuming that there is just one item and just one map, and that the item is a number.
 Number GeneratedKeyHolder.getKey()
           
 Map KeyHolder.getKeys()
          Retrieve the first map of keys.
 Map GeneratedKeyHolder.getKeys()
           
 

Uses of InvalidDataAccessApiUsageException in org.springframework.orm.hibernate
 

Methods in org.springframework.orm.hibernate that throw InvalidDataAccessApiUsageException
protected  void HibernateTemplate.checkWriteOperationAllowed(net.sf.hibernate.Session session)
          Check whether write operations are allowed on the given Session.
 

Uses of InvalidDataAccessApiUsageException in org.springframework.orm.hibernate3
 

Methods in org.springframework.orm.hibernate3 that throw InvalidDataAccessApiUsageException
protected  void HibernateTemplate.checkWriteOperationAllowed(Session session)
          Check whether write operations are allowed on the given Session.
 

Uses of InvalidDataAccessApiUsageException in org.springframework.orm.jdo
 

Subclasses of InvalidDataAccessApiUsageException in org.springframework.orm.jdo
 class JdoUsageException
          JDO-specific subclass of InvalidDataAccessApiUsageException.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.