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

org.itsallcode.jdbc.PreparedStatementSetter Maven / Gradle / Ivy

There is a newer version: 0.7.1
Show newest version
package org.itsallcode.jdbc;

import java.sql.PreparedStatement;
import java.sql.SQLException;

/**
 * Instances of this class allow setting values for a {@link PreparedStatement}.
 */
@FunctionalInterface
public interface PreparedStatementSetter {
    /**
     * Set values for the given prepared statement.
     * 
     * @param preparedStatement the prepared statement
     * @throws SQLException if setting values fails
     */
    void setValues(PreparedStatement preparedStatement) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy