1. /*
  2. * Copyright 2002-2004 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.jdbc.core;
  17. import java.sql.CallableStatement;
  18. import java.sql.Connection;
  19. import java.sql.SQLException;
  20. /**
  21. * One of the three central callback interfaces used by the JdbcTemplate class.
  22. * This interface creates a CallableStatement given a connection, provided
  23. * by the JdbcTemplate class. Implementations are responsible for providing
  24. * SQL and any necessary parameters.
  25. *
  26. * <p>Implementations <i>do not</i> need to concern themselves with
  27. * SQLExceptions that may be thrown from operations they attempt.
  28. * The JdbcTemplate class will catch and handle SQLExceptions appropriately.
  29. *
  30. * <p>A PreparedStatementCreator should also implement the SqlProvider interface
  31. * if it is able to provide the SQL it uses for PreparedStatement creation.
  32. * This allows for better contextual information in case of exceptions.
  33. *
  34. * @author Rod Johnson
  35. * @author Thomas Risberg
  36. * @see JdbcTemplate#execute(CallableStatementCreator, CallableStatementCallback)
  37. * @see JdbcTemplate#call
  38. * @see SqlProvider
  39. */
  40. public interface CallableStatementCreator {
  41. /**
  42. * Create a callable statement in this connection. Allows implementations to use
  43. * CallableStatements.
  44. * @param con Connection to use to create statement
  45. * @return a callable statement
  46. * @throws SQLException there is no need to catch SQLExceptions
  47. * that may be thrown in the implementation of this method.
  48. * The JdbcTemplate class will handle them.
  49. */
  50. CallableStatement createCallableStatement(Connection con) throws SQLException;
  51. }