Skip to content

Commit 4bd4af5

Browse files
author
Paultagoras
committed
Navigation change
1 parent 060735d commit 4bd4af5

File tree

4 files changed

+17
-21
lines changed

4 files changed

+17
-21
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
---
2-
sidebar_label: Client V1
3-
sidebar_position: 3
4-
keywords: [clickhouse, java, client, integrate]
5-
description: Java ClickHouse Connector v1
6-
slug: /en/integrations/java/client-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/client-v2.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
sidebar_label: Client V2
2+
sidebar_label: Client 0.8+
33
sidebar_position: 2
44
keywords: [clickhouse, java, client, integrate]
5-
description: Java ClickHouse Connector v2
5+
description: Java ClickHouse Connector 0.8+
66
slug: /en/integrations/java/client-v2
77
---
88

@@ -12,7 +12,12 @@ import CodeBlock from '@theme/CodeBlock';
1212

1313
# Java Client (V2)
1414

15-
Java client library to communicate with a DB server through its protocols. The current implementation only supports the [HTTP interface](/docs/en/interfaces/http). The library provides its own API to send requests to a server. The library also provides tools to work with different binary data formats (RowBinary* & Native*).
15+
Java client library to communicate with a DB server through its protocols. The current implementation only supports the [HTTP interface](/docs/en/interfaces/http).
16+
The library provides its own API to send requests to a server. The library also provides tools to work with different binary data formats (RowBinary* & Native*).
17+
18+
:::note
19+
If you're looking for a prior version of the java client docs, please see [here](/docs/en/integrations/language-clients/java/client-v1.md).
20+
:::
1621

1722
## Setup
1823

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ import CodeBlock from '@theme/CodeBlock';
1111

1212
# Java Clients Overview
1313

14-
- [Client-V2](./client-v2.md)
15-
- [Client-V1 (Old)](./client-v1.md)
16-
- [JDBC-V2](./jdbc-v2.md)
14+
- [Client 0.8+](./client-v2.md)
15+
- [JDBC 0.8+](./jdbc-v2.md)
1716
- [R2DBC Driver](./r2dbc.md)
1817

1918
## ClickHouse Client

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
sidebar_label: JDBC V2
2+
sidebar_label: JDBC 0.8+
33
sidebar_position: 4
44
keywords: [clickhouse, java, jdbc, driver, integrate]
5-
description: ClickHouse JDBC driver V2
5+
description: ClickHouse JDBC driver
66
slug: /en/integrations/java/jdbc-v2
77
---
88

@@ -16,6 +16,10 @@ import CodeBlock from '@theme/CodeBlock';
1616
`clickhouse-jdbc` implements the standard JDBC interface using [client-v2](/docs/en/integrations/language-clients/java/client-v2.md).
1717
We recommend using [client-v2](/docs/en/integrations/language-clients/java/client-v2.md) directly if performance/direct access is critical.
1818

19+
:::note
20+
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).
21+
:::
22+
1923
## Changes from 0.7.x
2024
In 0.8 we tried to make the driver more strictly follow the JDBC specification, so there are some removed features that may affect you:
2125

@@ -231,8 +235,4 @@ After Setting those settings, you need to ensure that your client enables the Ke
231235
232236
```java
233237
properties.setProperty("socket_keepalive", "true");
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-
:::
238+
```

0 commit comments

Comments
 (0)