You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2021/05/17 04:00:54 UTC

[GitHub] [iotdb] HTHou opened a new pull request #3204: Add DBeaver-IoTDB user guide

HTHou opened a new pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204


   ## Description
   The user guide of connecting IoTDB with DBeaver.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634020366



##########
File path: docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,85 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver是一个SQL客户端和数据库管理工具。DBeaver可以使用IoTDB的JDBC驱动与IoTDB进行交互。
+
+### DBeaver安装
+
+* DBeaver 下载地址: https://dbeaver.io/download/
+
+### IoTDB 安装
+
+* 下载IoTDB二进制版本
+  * IoTDB 下载地址: https://iotdb.apache.org/Download/
+  * 版本 >= 0.13.0
+* 或者从源代码中编译
+  * 参考 https://github.com/apache/iotdb
+
+### 连接IoTDB与DBeaver
+
+1. 启动 IoTDB 服务
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. 启动 DBeaver
+
+3. 打开 Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+4. 为IoTDB新建一个驱动类型
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. 添加下图中的这些库 (可以在CLI文件夹下找到),点击 `Find Class`

Review comment:
       ```suggestion
   5. 添加下图中的这些库,点击 `Find Class`
      也可以在源代码运行`mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`后,在`iotdb/jdbc/target/` 下找到并添加名为`iotdb-jdbc-{version}-jar-with-dependencies.jar`的库。
       
   ```
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634021813



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,84 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver is a SQL client software application and a database administration tool. It can use the JDBC application programming interface (API) to interact with IoTDB via the JDBC driver. 
+
+### DBeaver Installation
+
+* From DBeaver site: https://dbeaver.io/download/
+
+### IoTDB Installation
+
+* Download binary version
+  * From IoTDB site: https://iotdb.apache.org/Download/
+  * Version >= 0.13.0
+* Or compile from source code
+  * See https://github.com/apache/iotdb
+
+### Connect IoTDB and DBeaver
+
+1. Start IoTDB server
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. Start DBeaver
+3. Open Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+
+4. Create a new driver type for IoTDB
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. Add libs listed below and click `Find Class`.
+   Another way is after running `mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`, finding and adding a lib names `iotdb-jdbc-{version}-jar-with-dependencies.jar` under `iotdb/jdbc/target/`.

Review comment:
       ```suggestion
   5. Add libs listed below and click `Find Class`.
      
      Another way is after running `mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`, finding and adding a lib names `iotdb-jdbc-{version}-jar-with-dependencies.jar` under `iotdb/jdbc/target/`.
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r633401044



##########
File path: docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,86 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver

Review comment:
       ```suggestion
   ## DBeaver-IoTDB
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634021312



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,83 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver is a SQL client software application and a database administration tool. It can use the JDBC application programming interface (API) to interact with IoTDB via the JDBC driver. 
+
+### DBeaver Installation
+
+* From DBeaver site: https://dbeaver.io/download/
+
+### IoTDB Installation
+
+* Download binary version
+  * From IoTDB site: https://iotdb.apache.org/Download/
+  * Version >= 0.13.0
+* Or compile from source code
+  * See https://github.com/apache/iotdb
+
+### Connect IoTDB and DBeaver
+
+1. Start IoTDB server
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. Start DBeaver
+3. Open Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+
+4. Create a new driver type for IoTDB
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. Add libs listed below (can be found in CLI) and click `Find Class`
+

Review comment:
       ```suggestion
   5. Add libs listed below and click `Find Class`.
      Another way is after running `mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`, finding and adding a lib names `iotdb-jdbc-{version}-jar-with-dependencies.jar` under `iotdb/jdbc/target/`.
   
   
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r633397688



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,85 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver
+
+DBeaver is a SQL client software application and a database administration tool. It can use the JDBC application programming interface (API) to interact with IoTDB via the JDBC driver. 
+
+### DBeaver Installation
+
+* From DBeaver site: https://dbeaver.io/download/
+
+### IoTDB Installation
+
+* Download binary version
+  * From IoTDB site: https://iotdb.apache.org/Download/
+  * Version >= 0.13.0
+* Or compile from source code
+  * See https://github.com/apache/iotdb
+
+### Connect IoTDB and DBeaver
+
+1. Start IoTDB server
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. Start DBeaver
+3. Open Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+
+4. Create a new driver type for IoTDB
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. Add libs listed below (can be found in CLI) and clict `Find Class`

Review comment:
       ```suggestion
   5. Add libs listed below (can be found in CLI) and click `Find Class`
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634021899



##########
File path: docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,86 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver是一个SQL客户端和数据库管理工具。DBeaver可以使用IoTDB的JDBC驱动与IoTDB进行交互。
+
+### DBeaver安装
+
+* DBeaver 下载地址: https://dbeaver.io/download/
+
+### IoTDB 安装
+
+* 下载IoTDB二进制版本
+  * IoTDB 下载地址: https://iotdb.apache.org/Download/
+  * 版本 >= 0.13.0
+* 或者从源代码中编译
+  * 参考 https://github.com/apache/iotdb
+
+### 连接IoTDB与DBeaver
+
+1. 启动 IoTDB 服务
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. 启动 DBeaver
+
+3. 打开 Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+4. 为IoTDB新建一个驱动类型
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. 添加下图中的这些库,点击 `Find Class`
+   也可以在源代码运行`mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`后,在`iotdb/jdbc/target/` 下找到并添加名为`iotdb-jdbc-{version}-jar-with-dependencies.jar`的库。

Review comment:
       ```suggestion
   5. 添加下图中的这些库,点击 `Find Class`
      
      也可以在源代码运行`mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`后,在`iotdb/jdbc/target/` 下找到并添加名为`iotdb-jdbc-{version}-jar-with-dependencies.jar`的库。
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634020366



##########
File path: docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,85 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver是一个SQL客户端和数据库管理工具。DBeaver可以使用IoTDB的JDBC驱动与IoTDB进行交互。
+
+### DBeaver安装
+
+* DBeaver 下载地址: https://dbeaver.io/download/
+
+### IoTDB 安装
+
+* 下载IoTDB二进制版本
+  * IoTDB 下载地址: https://iotdb.apache.org/Download/
+  * 版本 >= 0.13.0
+* 或者从源代码中编译
+  * 参考 https://github.com/apache/iotdb
+
+### 连接IoTDB与DBeaver
+
+1. 启动 IoTDB 服务
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. 启动 DBeaver
+
+3. 打开 Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+4. 为IoTDB新建一个驱动类型
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. 添加下图中的这些库 (可以在CLI文件夹下找到),点击 `Find Class`

Review comment:
       ```suggestion
   5. 添加下图中的这些库,点击 `Find Class`
   
       也可以在源代码运行`mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`后,在`iotdb/jdbc/target/` 下找到并添加名为`iotdb-jdbc-{version}-jar-with-dependencies.jar`的库。
       
   ```
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r633397688



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,85 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver
+
+DBeaver is a SQL client software application and a database administration tool. It can use the JDBC application programming interface (API) to interact with IoTDB via the JDBC driver. 
+
+### DBeaver Installation
+
+* From DBeaver site: https://dbeaver.io/download/
+
+### IoTDB Installation
+
+* Download binary version
+  * From IoTDB site: https://iotdb.apache.org/Download/
+  * Version >= 0.13.0
+* Or compile from source code
+  * See https://github.com/apache/iotdb
+
+### Connect IoTDB and DBeaver
+
+1. Start IoTDB server
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. Start DBeaver
+3. Open Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+
+4. Create a new driver type for IoTDB
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. Add libs listed below (can be found in CLI) and clict `Find Class`

Review comment:
       ```suggestion
   5. Add libs listed below (can be found in CLI) and click `Find Class`
   ```

##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,84 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver

Review comment:
       ```suggestion
   ## DBeaver-IoTDB
   ```

##########
File path: docs/zh/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,86 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver

Review comment:
       ```suggestion
   ## DBeaver-IoTDB
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r633400900



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,84 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver

Review comment:
       ```suggestion
   ## DBeaver-IoTDB
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] qiaojialin merged pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
qiaojialin merged pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [iotdb] HTHou commented on a change in pull request #3204: [IOTDB-1340] Add DBeaver-IoTDB user guide

Posted by GitBox <gi...@apache.org>.
HTHou commented on a change in pull request #3204:
URL: https://github.com/apache/iotdb/pull/3204#discussion_r634021312



##########
File path: docs/UserGuide/Ecosystem Integration/DBeaver.md
##########
@@ -0,0 +1,83 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+
+## DBeaver-IoTDB
+
+DBeaver is a SQL client software application and a database administration tool. It can use the JDBC application programming interface (API) to interact with IoTDB via the JDBC driver. 
+
+### DBeaver Installation
+
+* From DBeaver site: https://dbeaver.io/download/
+
+### IoTDB Installation
+
+* Download binary version
+  * From IoTDB site: https://iotdb.apache.org/Download/
+  * Version >= 0.13.0
+* Or compile from source code
+  * See https://github.com/apache/iotdb
+
+### Connect IoTDB and DBeaver
+
+1. Start IoTDB server
+
+   ```shell
+   ./sbin/start-server.sh
+   ``` 
+2. Start DBeaver
+3. Open Driver Manager
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.22%20AM.png?raw=true)
+
+4. Create a new driver type for IoTDB
+
+   ![](https://github.com/apache/iotdb-bin-resources/blob/main/docs/UserGuide/Ecosystem%20Integration/DBeaver/Screen%20Shot%202021-05-17%20at%2010.56.51%20AM.png?raw=true)
+
+5. Add libs listed below (can be found in CLI) and click `Find Class`
+

Review comment:
       ```suggestion
   5. Add libs listed below and click `Find Class`.
      Another way is after running `mvn clean package -pl jdbc -am -DskipTests -P get-jar-with-dependencies`, find and add a lib names `iotdb-jdbc-{version}-jar-with-dependencies.jar` under `iotdb/jdbc/target/`.
   
   
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org