org.springframework.jdbc.support
Interface SQLExceptionTranslator

All Known Implementing Classes:
SQLErrorCodeSQLExceptionTranslator, SQLStateSQLExceptionTranslator

public interface SQLExceptionTranslator

Interface to be implemented by classes that can translate between SQLExceptions and our data access strategy-agnostic org.springframework.dao.DataAccessException.

Implementations can be generic (for example, using SQLState codes for JDBC) or proprietary (for example, using Oracle error codes) for greater precision.

Author:
Rod Johnson
See Also:
DataAccessException

Method Summary
 DataAccessException translate(java.lang.String task, java.lang.String sql, java.sql.SQLException sqlex)
          Translate the given SQL exception into a generic data access exception.
 

Method Detail

translate

public DataAccessException translate(java.lang.String task,
                                     java.lang.String sql,
                                     java.sql.SQLException sqlex)
Translate the given SQL exception into a generic data access exception.

Parameters:
task - readable text describing the task being attempted
sql - SQL query or update that caused the problem. May be null.
sqlex - SQLException encountered by JDBC implementation


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