![JAR search and dependency download from the Maven repository](/logo.png)
net.dongliu.dbutils.ConnectionExecutor Maven / Gradle / Ivy
package net.dongliu.dbutils;
import java.sql.Connection;
import java.util.Objects;
/**
* Sql Executor wrap a connection
*/
class ConnectionExecutor extends SQLExecutor {
private final Connection connection;
public ConnectionExecutor(Connection connection) {
this.connection = Objects.requireNonNull(connection);
}
@Override
protected ConnectionInfo supplyConnection() {
return new ConnectionInfo(connection, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy