Spring Framework

Package org.springframework.jdbc.core.simple

Simplification layer over JdbcTemplate for Java 5 and above.

See: Description

Package org.springframework.jdbc.core.simple Description

Simplification layer over JdbcTemplate for Java 5 and above.

SimpleJdbcInsert and SimpleJdbcCall are classes that takes advantage of database metadata provided by the JDBC driver to simplify the application code. Much of the parameter specification becomes unnecessary since it can be looked up in the metadata. Note: The SimpleJdbcOperations and SimpleJdbcTemplate, which provides a wrapper around JdbcTemplate to take advantage of Java 5 features like generics, varargs and autoboxing, is now deprecated since Spring 3.1. All functionality is now available in the JdbcOperations and NamedParametersOperations respectively.

Spring Framework