Implementations do not need to concern themselves with SQLExceptions that may be thrown from operations they attempt. The JdbcTemplate class will catch and handle SQLExceptions appropriately.
A PreparedStatementCreator should also implement the SqlProvider interface if it is able to provide the SQL it uses for PreparedStatement creation. This allows for better contextual information in case of exceptions. @author Rod Johnson @author Thomas Risberg @see JdbcTemplate#execute(CallableStatementCreator,CallableStatementCallback) @see JdbcTemplate#call @see SqlProvider
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|