Uses of Interface
org.springframework.jdbc.support.SQLExceptionTranslator

Packages that use SQLExceptionTranslator
org.springframework.jdbc.core.support Classes supporting the org.springframework.jdbc.core package.  
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 with Spring concepts.  
org.springframework.orm.jdo Package providing integration of JDO with Spring concepts.  
 

Uses of SQLExceptionTranslator in org.springframework.jdbc.core.support
 

Methods in org.springframework.jdbc.core.support that return SQLExceptionTranslator
protected  SQLExceptionTranslator JdbcDaoSupport.getExceptionTranslator()
          Return the SQLExceptionTranslator of this DAO's JdbcTemplate, for translating SQLExceptions in custom JDBC access code.
 

Uses of SQLExceptionTranslator in org.springframework.jdbc.support
 

Classes in org.springframework.jdbc.support that implement SQLExceptionTranslator
 class SQLErrorCodeSQLExceptionTranslator
          Implementation of SQLExceptionTranslator that uses specific vendor codes.
 class SQLStateSQLExceptionTranslator
          Implementation of SQLExceptionTranslator that uses the SQLState code in the SQLException.
 

Methods in org.springframework.jdbc.support that return SQLExceptionTranslator
 SQLExceptionTranslator SQLErrorCodeSQLExceptionTranslator.getFallbackTranslator()
          Return the fallback exception translator.
 SQLExceptionTranslator JdbcAccessor.getExceptionTranslator()
          Return the exception translator for this instance.
 

Methods in org.springframework.jdbc.support with parameters of type SQLExceptionTranslator
 void SQLErrorCodeSQLExceptionTranslator.setFallbackTranslator(SQLExceptionTranslator fallback)
          Override the default SQL state fallback translator.
 void JdbcAccessor.setExceptionTranslator(SQLExceptionTranslator exceptionTranslator)
          Set the exception translator for this instance.
 

Uses of SQLExceptionTranslator in org.springframework.orm.hibernate
 

Methods in org.springframework.orm.hibernate that return SQLExceptionTranslator
static SQLExceptionTranslator SessionFactoryUtils.newJdbcExceptionTranslator(SessionFactory sessionFactory)
          Create an appropriate SQLExceptionTranslator for the given SessionFactory.
 SQLExceptionTranslator HibernateTransactionManager.getJdbcExceptionTranslator()
          Return the JDBC exception translator for this transaction manager.
 SQLExceptionTranslator HibernateAccessor.getJdbcExceptionTranslator()
          Return the JDBC exception translator for this instance.
 

Methods in org.springframework.orm.hibernate with parameters of type SQLExceptionTranslator
static Session SessionFactoryUtils.getSession(SessionFactory sessionFactory, Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator)
          Get a Hibernate Session for the given SessionFactory.
static Session SessionFactoryUtils.getSession(SessionFactory sessionFactory, Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator, boolean allowSynchronization)
          Get a Hibernate Session for the given SessionFactory.
 void HibernateTransactionManager.setJdbcExceptionTranslator(SQLExceptionTranslator jdbcExceptionTranslator)
          Set the JDBC exception translator for this transaction manager.
 void HibernateAccessor.setJdbcExceptionTranslator(SQLExceptionTranslator jdbcExceptionTranslator)
          Set the JDBC exception translator for this instance.
 

Uses of SQLExceptionTranslator in org.springframework.orm.jdo
 

Methods in org.springframework.orm.jdo that return SQLExceptionTranslator
static SQLExceptionTranslator PersistenceManagerFactoryUtils.newJdbcExceptionTranslator(javax.jdo.PersistenceManagerFactory pmf)
          Create an appropriate SQLExceptionTranslator for the given PersistenceManagerFactory.
 SQLExceptionTranslator DefaultJdoDialect.getJdbcExceptionTranslator()
          Return the JDBC exception translator for this instance.
 

Methods in org.springframework.orm.jdo with parameters of type SQLExceptionTranslator
 void DefaultJdoDialect.setJdbcExceptionTranslator(SQLExceptionTranslator jdbcExceptionTranslator)
          Set the JDBC exception translator for this dialect.
 



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