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

org.guppy4j.jdbc.ParamsSetter Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package org.guppy4j.jdbc;

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

/**
 * Sets JDBC query parameters
 */
public interface ParamsSetter {

    /**
     * Sets all parameters for this query (i.e. performs placeholder substitution
     * on the prepared statement)
     *
     * @param ps The prepared statement representing this query
     * @throws java.sql.SQLException If thrown by any JDBC calls
     */
    void setParams(PreparedStatement ps) throws SQLException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy