jdbc创建clickhouse的connection时,如何指定数据库?
时间: 2024-02-16 11:04:13 浏览: 101
clickhouse-0.4.0jdbc驱动
在JDBC连接ClickHouse时,可以通过在URL中指定数据库来连接到指定的数据库。具体方法如下:
```java
String url = "jdbc:clickhouse://localhost:8123/mydatabase";
Properties properties = new Properties();
properties.setProperty("user", "myusername");
properties.setProperty("password", "mypassword");
Connection connection = DriverManager.getConnection(url, properties);
```
其中,`jdbc:clickhouse://localhost:8123/mydatabase` 表示连接到本地 ClickHouse 服务器的 `mydatabase` 数据库;`myusername` 和 `mypassword` 分别为数据库的用户名和密码。
阅读全文