homework-jianmu/tests/examples/JDBC/JDBCDemo
nianhongdong 61d7d9ab41
Update JDBCDemo.java
71和76行测试示例的数据库和表名没有动态拼接,测试用在前面改数据库名和表名,会导致运行报错
2021-03-31 13:46:01 +08:00
..
src/main/java/com/taosdata/example Update JDBCDemo.java 2021-03-31 13:46:01 +08:00
.gitignore update jdbcTaosdemo 2020-09-25 10:26:58 +08:00
README-jdbc-windows.md [TD-2643,TD-2925]<fix>: update sim test case and JDBCDemo doc 2021-02-04 15:40:51 +08:00
pom.xml [TD-3410]<feature>: support nutz framework (#5600) 2021-03-29 14:42:49 +08:00
readme.md change 2021-01-27 16:17:23 +08:00

readme.md

How to Run the JDBC Demo Code On Linux OS

TDengine's JDBC demo project is organized in a Maven way so that users can easily compile, package and run the project. If you don't have Maven on your server, you may install it using

sudo apt-get install maven

Install TDengine Client

Make sure you have already installed a tdengine client on your current develop environment. Download the tdengine package on our website: https://www.taosdata.com/cn/all-downloads/ and install the client.

Run jdbcDemo using mvn plugin

run command:

mvn clean compile exec:java -Dexec.mainClass="com.taosdata.example.JDBCDemo"

and run with your customed args

mvn clean compile exec:java -Dexec.mainClass="com.taosdata.example.JDBCDemo" -Dexec.args="-host [HOSTNAME]"

Compile the Demo Code and Run It

To compile taos-jdbcdriver, go to the source directory TDengine/src/connector/jdbc and execute

mvn clean package -Dmaven.test.skip=true

To compile the demo project, go to the source directory TDengine/tests/examples/JDBC/JDBCDemo and execute

mvn clean package assembly:single

To run JDBCDemo.jar, go to TDengine/tests/examples/JDBC/JDBCDemo and execute

java -Djava.ext.dirs=../../../../src/connector/jdbc/target:$JAVA_HOME/jre/lib/ext -jar target/JDBCDemo-SNAPSHOT-jar-with-dependencies.jar -host [HOSTNAME]