# clickhouse-jdbc **Repository Path**: qwsone/clickhouse-jdbc ## Basic Information - **Project Name**: clickhouse-jdbc - **Description**: JDBC driver for ClickHouse - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2019-05-30 - **Last Updated**: 2024-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![clickhouse-jdbc](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc) [![Build Status](https://travis-ci.org/yandex/clickhouse-jdbc.svg?branch=master)](https://travis-ci.org/yandex/clickhouse-jdbc) ClickHouse JDBC driver =============== This is a basic and restricted implementation of jdbc driver for ClickHouse. It has support of a minimal subset of features to be usable. ### Usage ```xml ru.yandex.clickhouse clickhouse-jdbc 0.1.34 ``` URL syntax: `jdbc:clickhouse://:[/]`, e.g. `jdbc:clickhouse://localhost:8123/test` JDBC Driver Class: `ru.yandex.clickhouse.ClickHouseDriver` additionally, if you have a few instances, you can use `BalancedClickhouseDataSource`. ### Compiling with maven The driver is built with maven. `mvn package -DskipTests=true` To build a jar with dependencies use `mvn package assembly:single -DskipTests=true` ### Build requirements In order to build the jdbc client one need to have jdk 1.6 or higher.