org.etlunit.feature.database.JDBCClient Maven / Gradle / Ivy
package org.etlunit.feature.database;
import org.etlunit.TestExecutionError;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
public interface JDBCClient
{
interface ConnectionClient
{
void connection(Connection conn, DatabaseConnection connection, String mode, int id) throws Exception;
}
void useConnection(DatabaseConnection connection, String mode, ConnectionClient client) throws TestExecutionError;
void useConnection(DatabaseConnection connection, String mode, ConnectionClient client, int id) throws TestExecutionError;
interface StatementClient
{
void connection(Connection conn, Statement st, DatabaseConnection connection, String mode, int id) throws Exception;
}
void useStatement(DatabaseConnection connection, String mode, StatementClient client) throws TestExecutionError;
void useStatement(DatabaseConnection connection, String mode, StatementClient client, int id) throws TestExecutionError;
interface PreparedStatementClient
{
String prepareText();
void connection(Connection conn, PreparedStatement st, DatabaseConnection connection, String mode, int id) throws Exception;
}
void usePreparedStatement(DatabaseConnection connection, String mode, PreparedStatementClient client) throws TestExecutionError;
void usePreparedStatement(DatabaseConnection connection, String mode, PreparedStatementClient client, int id) throws TestExecutionError;
}