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

io.github.afezeria.freedao.classic.runtime.SqlExecutor Maven / Gradle / Ivy

package io.github.afezeria.freedao.classic.runtime;

import java.sql.Connection;
import java.util.List;

/**
 *
 */
@FunctionalInterface
public interface SqlExecutor {
    T execute(Connection connection,
              Object[] methodArgs,
              String sql,
              List args,
              ResultHandler resultHandler) throws Exception;
}