homework-jianmu/tests/examples/JDBC
jyhou d6b21dadd0 Fix issue #270 2019-08-03 17:50:18 +08:00
..
JDBCDemo Fix issue #270 2019-08-03 17:50:18 +08:00
readme.md Create readme.md 2019-07-15 20:05:44 +08:00

readme.md

How to Run the JDBC Demo Code On A 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

Compile and Install JDBC Driver

TDengine's JDBC driver jar is not yet published to maven center repo, so we need to manually compile it and install it to the local Maven repository. This can be easily done with Maven. Go to source directory of the JDBC driver TDengine/src/connector/jdbc and execute

mvn clean package install

Compile the Demo Code and Run It

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

mvn clean assembly:single package

The pom.xml is configured to package all the dependencies into one executable jar file. To run it, go to TDengine/tests/examples/JDBC/JDBCDemo/target and execute

java -jar jdbcdemo-1.0-SNAPSHOT-jar-with-dependencies.jar