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.  
 

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 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 SQLState 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
 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 net.sf.hibernate.Session SessionFactoryUtils.getSession(net.sf.hibernate.SessionFactory sessionFactory, net.sf.hibernate.Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator)
          Get a Hibernate Session for the given SessionFactory.
static net.sf.hibernate.Session SessionFactoryUtils.getSession(net.sf.hibernate.SessionFactory sessionFactory, net.sf.hibernate.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.
 



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