All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.jdbc.core.namedparam.package-info Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/**
 * JdbcTemplate variant with named parameter support.
 *
 * 

NamedParameterJdbcTemplate is a wrapper around JdbcTemplate that adds * support for named parameter parsing. It does not implement the JdbcOperations * interface or extend JdbcTemplate, but implements the dedicated * NamedParameterJdbcOperations interface. * *

If you need the full power of Spring JDBC for less common operations, use * the {@code getJdbcOperations()} method of NamedParameterJdbcTemplate and * work with the returned classic template, or use a JdbcTemplate instance directly. */ @NonNullApi @NonNullFields package org.springframework.jdbc.core.namedparam; import org.springframework.lang.NonNullApi; import org.springframework.lang.NonNullFields;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy