Package org.springframework.jdbc.core.simple
@NonNullApi
@NonNullFields
package org.springframework.jdbc.core.simple
Simplification layer for table inserts and stored procedure calls.
SimpleJdbcInsert
and SimpleJdbcCall
take advantage of database
meta-data 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 meta-data.
-
ClassDescriptionAbstract class to provide base functionality for easy stored procedure calls based on configuration options and database meta-data.Abstract class to provide base functionality for easy inserts based on configuration options and database meta-data.A SimpleJdbcCall is a multithreaded, reusable object representing a call to a stored procedure or a stored function.Interface specifying the API for a Simple JDBC Call implemented by
SimpleJdbcCall
.A SimpleJdbcInsert is a multithreaded, reusable object providing easy insert capabilities for a table.Interface specifying the API for a Simple JDBC Insert implemented bySimpleJdbcInsert
.