Skip to content

Commit 33952fe

Browse files
author
Paultagoras
committed
Style
1 parent 45d2389 commit 33952fe

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

docs/en/integrations/language-clients/java/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import CodeBlock from '@theme/CodeBlock';
1414
- [Client-V2](./client-v2.md)
1515
- [Client-V1 (Old)](./client-v1.md)
1616
- [JDBC-V2](./jdbc-v2.md)
17-
- [JDBC-V1 (Old)](./jdbc-v1.md)
1817
- [R2DBC Driver](./r2dbc.md)
1918

2019
## ClickHouse Client

docs/en/integrations/language-clients/java/jdbc-v1.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
---
2-
sidebar_label: JDBC V1 (Old)
3-
sidebar_position: 5
4-
keywords: [clickhouse, java, jdbc, driver, integrate]
5-
description: ClickHouse JDBC driver V1 (outdated)
6-
slug: /en/integrations/java/jdbc-v1
7-
---
8-
91
import Tabs from '@theme/Tabs';
102
import TabItem from '@theme/TabItem';
113
import CodeBlock from '@theme/CodeBlock';

docs/en/integrations/language-clients/java/jdbc-v2.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ try (PreparedStatement ps = conn.prepareStatement("INSERT INTO mytable VALUES (?
156156
}
157157
```
158158

159-
## `Hikari`
159+
## `HikariCP`
160160

161161
```java showLineNumbers
162162
// connection pooling won't help much in terms of performance,
@@ -223,12 +223,16 @@ On Linux, the equivalent settings alone may not resolve the issue. Additional st
223223
224224
2. After modifying the kernel parameters, apply the changes by running the following command:
225225
226-
```shell
227-
sudo sysctl -p
228-
```
226+
```shell
227+
sudo sysctl -p
228+
```
229229
230230
After Setting those settings, you need to ensure that your client enables the Keep Alive option on the socket:
231231
232232
```java
233233
properties.setProperty("socket_keepalive", "true");
234-
```
234+
```
235+
236+
:::note
237+
If you're looking for a prior version of the JDBC driver docs, please see [here](/docs/en/integrations/language-clients/java/jdbc-v1.md).
238+
:::

0 commit comments

Comments
 (0)