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.

/** * Simplification layer for table inserts and stored procedure calls. * * <p>{@code SimpleJdbcInsert} and {@code 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. */
@NonNullApi @NonNullFields package org.springframework.jdbc.core.simple; import org.springframework.lang.NonNullApi; import org.springframework.lang.NonNullFields;