View RSS Feed

Spring Framework

SpringSource Spring Framework tutorials and examples. Focusing on Spring 3 and above.

  1. What is JdbcTemplate Class?

    by , 07-07-2012 at 06:31 PM
    Following functions are performed by JdbcTemplate class.

    • Execute update statements
    • Execute queries
    • Stored procedure calls
    • ResultSets iteration
    • Returned parameter extraction
    • Cache JDBC exceptions
    • Transalation of JDBC exceptions into generic and informative exceptions that are defined in spring dao package

    Once JdbcTemplate instance are configured, they are thread safe. It is possible to use a single JdbcTemplate ...
    Categories
    JDBC