Skip to content

Commit

Permalink
Merge pull request #29431 from taosdata/docs/update-jdbc-ver
Browse files Browse the repository at this point in the history
update jdbc version to 3.5.1
  • Loading branch information
zitsen authored Jan 2, 2025
2 parents a4ea1f1 + 2550b26 commit 70f77d9
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/en/07-develop/01-connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ If you are using Maven to manage your project, simply add the following dependen
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
```

Expand Down
1 change: 1 addition & 0 deletions docs/en/14-reference/05-connector/14-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ The JDBC driver implementation for TDengine strives to be consistent with relati

| taos-jdbcdriver Version | Major Changes | TDengine Version |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ |
| 3.5.1 | Fixed the getObject issue in data subscription. | - |
| 3.5.0 | 1. Optimized the performance of WebSocket connection parameter binding, supporting parameter binding queries using binary data. <br/> 2. Optimized the performance of small queries in WebSocket connection. <br/> 3. Added support for setting time zone and app info on WebSocket connection. | 3.3.5.0 and higher |
| 3.4.0 | 1. Replaced fastjson library with jackson. <br/> 2. WebSocket uses a separate protocol identifier. <br/> 3. Optimized background thread usage to avoid user misuse leading to timeouts. | - |
| 3.3.4 | Fixed getInt error when data type is float. | - |
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/JDBCDemo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/SpringJdbcTemplate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/connectionPools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
<!-- druid -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/consumer-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/mybatisplus-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/springbootdemo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/JDBC/taosdemo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
<!-- <scope>system</scope>-->
<!-- <systemPath>${project.basedir}/src/main/resources/lib/taos-jdbcdriver-2.0.15-dist.jar</systemPath>-->
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
<!-- ANCHOR_END: dep-->

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/07-develop/01-connect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TDengine 提供了丰富的应用程序开发接口,为了便于用户快速
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
</dependency>
```

Expand Down
1 change: 1 addition & 0 deletions docs/zh/14-reference/05-connector/14-java.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ TDengine 的 JDBC 驱动实现尽可能与关系型数据库驱动保持一致

| taos-jdbcdriver 版本 | 主要变化 | TDengine 版本 |
| ------------------| ---------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------- |
| 3.5.1 | 解决了数据订阅获取时间戳对象类型问题 | - |
| 3.5.0 | 1. 优化了 WebSocket 连接参数绑定性能,支持参数绑定查询使用二进制数据 <br/> 2. 优化了 WebSocket 连接在小查询上的性能 <br/> 3. WebSocket 连接上支持设置时区和应用信息 | 3.3.5.0 及更高版本 |
| 3.4.0 | 1. 使用 jackson 库替换 fastjson 库 <br/> 2. WebSocket 采用独立协议标识 <br/> 3. 优化后台拉取线程使用,避免用户误用导致超时 | - |
| 3.3.4 | 解决了 getInt 在数据类型为 float 报错 | - |
Expand Down

0 comments on commit 70f77d9

Please sign in to comment.