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

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

package ru.yandex.clickhouse;

import java.sql.Connection;
import java.sql.SQLException;
import java.util.TimeZone;


public interface ClickHouseConnection extends Connection {

    @Deprecated
    ClickHouseStatement createClickHouseStatement() throws SQLException;

    TimeZone getTimeZone();

    @Override
    ClickHouseStatement createStatement() throws SQLException;

    @Override
    ClickHouseStatement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException;

    String getServerVersion() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy