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

ru.yandex.clickhouse.ClickHouseStatement Maven / Gradle / Ivy

package ru.yandex.clickhouse;

import ru.yandex.clickhouse.response.ClickHouseResponse;
import ru.yandex.clickhouse.settings.ClickHouseQueryParam;

import java.io.InputStream;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.List;
import java.util.Map;


public interface ClickHouseStatement extends Statement {
    ClickHouseResponse executeQueryClickhouseResponse(String sql) throws SQLException;
    ClickHouseResponse executeQueryClickhouseResponse(String sql, Map additionalDBParams) throws SQLException;
    ResultSet executeQuery(String sql, Map additionalDBParams) throws SQLException;
    ResultSet executeQuery(String sql, Map additionalDBParams, List externalData) throws SQLException;
    void sendStream(InputStream content, String table) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy