From e5fd7b17ca735fccf5c47e7f36d8392178a0e25b Mon Sep 17 00:00:00 2001 From: Bo Ding Date: Tue, 18 Jan 2022 15:05:47 +0800 Subject: [PATCH] fix format error (#9880) --- documentation20/en/08.connector/docs.md | 36 ++++++++++++------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/documentation20/en/08.connector/docs.md b/documentation20/en/08.connector/docs.md index f8b4442815..fc3637de04 100644 --- a/documentation20/en/08.connector/docs.md +++ b/documentation20/en/08.connector/docs.md @@ -7,15 +7,15 @@ TDengine provides many connectors for development, including C/C++, JAVA, Python At present, TDengine connectors support a wide range of platforms, including hardware platforms such as X64/X86/ARM64/ARM32/MIPS/Alpha, and development environments such as Linux/Win64/Win32. The comparison matrix is as follows: | **CPU** | **X64 64bit** | **X64 64bit** | **X64 64bit** | **X86 32bit** | **ARM64** | **ARM32** | **MIPS Godson** | **Alpha Sunway** | **X64 TimecomTech** | -| ----------- | ------------- | ------------- | ------------- | ------------- | --------- | --------- | --------------- | ----------------- | ------------------- | -| **OS** | **Linux** | **Win64** | **Win32** | **Win32** | **Linux** | **Linux** | **Linux** | **Linux** | **Linux** | -| **C/C++** | ● | ● | ● | ○ | ● | ● | ○ | ○ | ○ | -| **JDBC** | ● | ● | ● | ○ | ● | ● | ○ | ○ | ○ | -| **Python** | ● | ● | ● | ○ | ● | ● | ○ | -- | ○ | -| **Go** | ● | ● | ● | ○ | ● | ● | ○ | -- | -- | -| **NodeJs** | ● | ● | ○ | ○ | ● | ● | ○ | -- | -- | -| **C#** | ○ | ● | ● | ○ | ○ | ○ | ○ | -- | -- | -| **RESTful** | ● | ● | ● | ● | ● | ● | ○ | ○ | ○ | +| ----------- | ------------- | ------------- | ------------- | ------------- | --------- | --------- | --------------- | ---------------- | ------------------- | +| **OS** | **Linux** | **Win64** | **Win32** | **Win32** | **Linux** | **Linux** | **Linux** | **Linux** | **Linux** | +| **C/C++** | ● | ● | ● | ○ | ● | ● | ○ | ○ | ○ | +| **JDBC** | ● | ● | ● | ○ | ● | ● | ○ | ○ | ○ | +| **Python** | ● | ● | ● | ○ | ● | ● | ○ | -- | ○ | +| **Go** | ● | ● | ● | ○ | ● | ● | ○ | -- | -- | +| **NodeJs** | ● | ● | ○ | ○ | ● | ● | ○ | -- | -- | +| **C#** | ○ | ● | ● | ○ | ○ | ○ | ○ | -- | -- | +| **RESTful** | ● | ● | ● | ● | ● | ● | ○ | ○ | ○ | Note: ● stands for that has been verified by official tests; ○ stands for that has been verified by unofficial tests. @@ -151,10 +151,10 @@ Under cmd, enter the c:\TDengine directory and directly execute taos.exe, and yo **Systems supported by C/C++ connectors as follows:** -| **CPU Type** | **x64****(****64bit****)** | | | **ARM64** | **ARM32** | -| -------------------- | ---------------------------- | ------- | ------- | --------- | ------------------ | -| **OS Type** | Linux | Win64 | Win32 | Linux | Linux | -| **Supported or Not** | Yes | **Yes** | **Yes** | **Yes** | **Yes** | +| **CPU Type** | **x64****(****64bit****)** | | | **ARM64** | **ARM32** | +| -------------------- | ---------------------------- | ------- | ------- | --------- | --------- | +| **OS Type** | Linux | Win64 | Win32 | Linux | Linux | +| **Supported or Not** | Yes | **Yes** | **Yes** | **Yes** | **Yes** | The C/C++ API is similar to MySQL's C API. When application use it, it needs to include the TDengine header file taos.h (after installed, it is located in/usr/local/taos/include): @@ -672,7 +672,7 @@ Parameter description: - IP: Any host in the cluster - PORT: httpPort configuration item in the configuration file, defaulting to 6041 -For example: [http://192.168.0.1](http://192.168.0.1/): 6041/rest/sql is a URL that points to an IP address of 192.168. 0.1. +For example: http://192.168.0.1:6041/rest/sql is a URL that points to an IP address of 192.168.0.1. The header of HTTP request needs to carry identity authentication information. TDengine supports Basic authentication and custom authentication. Subsequent versions will provide standard and secure digital signature mechanism for identity authentication. @@ -1003,10 +1003,10 @@ This API is used to open DB and return an object of type \* DB. Generally, DRIVE The Node.js connector supports the following systems: -| **CPU Type** | x64(64bit) | | | aarch64 | aarch32 | -| -------------------- | ---------------------------- | ------- | ------- | ----------- | ----------- | -| **OS Type** | Linux | Win64 | Win32 | Linux | Linux | -| **Supported or Not** | **Yes** | **Yes** | **Yes** | **Yes** | **Yes** | +| **CPU Type** | x64(64bit) | | | aarch64 | aarch32 | +| -------------------- | ----------- | ------- | ------- | ------- | ------- | +| **OS Type** | Linux | Win64 | Win32 | Linux | Linux | +| **Supported or Not** | **Yes** | **Yes** | **Yes** | **Yes** | **Yes** | See the [video tutorial](https://www.taosdata.com/blog/2020/11/11/1957.html) for use of the Node.js connector. -- GitLab