JdbcMapper/querymapper/src/main/java/com/moparisthebest/jdbc/PreparedStatementFactory.java

10 lines
263 B
Java
Raw Normal View History

package com.moparisthebest.jdbc;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public interface PreparedStatementFactory {
PreparedStatement prepareStatement(Connection conn, String sql) throws SQLException;
}