com.github.housepower.jdbc.ClickHouseDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
package com.github.housepower.jdbc;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ClickHouseDriver extends NonRegisterDriver {
static {
try {
DriverManager.registerDriver(new ClickHouseDriver());
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy