Merge pull request #21233 from taosdata/docs/TD-22166
docs(driver): fix format
This commit is contained in:
commit
21bdaee30d
|
@ -40,7 +40,7 @@ Please refer to [version support list](/reference/connector#version-support)
|
||||||
|
|
||||||
| taos-jdbcdriver version | major changes |
|
| taos-jdbcdriver version | major changes |
|
||||||
| :---------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------: |
|
| :---------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------: |
|
||||||
| 3.1.0 | JDBC REST connection supports schemaless/prepareStatement over WebSocket |
|
| 3.2.1 | JDBC REST connection supports schemaless/prepareStatement over WebSocket |
|
||||||
| 3.2.0 | This version has been deprecated |
|
| 3.2.0 | This version has been deprecated |
|
||||||
| 3.1.0 | JDBC REST connection supports subscription over WebSocket |
|
| 3.1.0 | JDBC REST connection supports subscription over WebSocket |
|
||||||
| 3.0.1 - 3.0.4 | fix the resultSet data is parsed incorrectly sometimes. 3.0.1 is compiled on JDK 11, you are advised to use other version in the JDK 8 environment |
|
| 3.0.1 - 3.0.4 | fix the resultSet data is parsed incorrectly sometimes. 3.0.1 is compiled on JDK 11, you are advised to use other version in the JDK 8 environment |
|
||||||
|
@ -688,7 +688,7 @@ public void setNString(int columnIndex, ArrayList<String> list, int size) throws
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="rest" label="REST connection">
|
<TabItem value="ws" label="WebSocket connection">
|
||||||
|
|
||||||
```java
|
```java
|
||||||
public class ParameterBindingDemo {
|
public class ParameterBindingDemo {
|
||||||
|
@ -912,7 +912,7 @@ public class SchemalessJniTest {
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="rest" label="REST connection">
|
<TabItem value="ws" label="WebSocket connection">
|
||||||
|
|
||||||
```java
|
```java
|
||||||
public class SchemalessWsTest {
|
public class SchemalessWsTest {
|
||||||
|
|
|
@ -876,6 +876,7 @@ public void setTagFloat(int index, float value)
|
||||||
public void setTagDouble(int index, double value)
|
public void setTagDouble(int index, double value)
|
||||||
public void setTagString(int index, String value)
|
public void setTagString(int index, String value)
|
||||||
public void setTagNString(int index, String value)
|
public void setTagNString(int index, String value)
|
||||||
|
```
|
||||||
|
|
||||||
### 无模式写入
|
### 无模式写入
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue