homework-jianmu/examples/JDBC/taosdemo
dependabot[bot] da45aafd8d
build(deps): bump fastjson in /examples/JDBC/taosdemo (#16096)
Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.75 to 1.2.83.
- [Release notes](https://github.com/alibaba/fastjson/releases)
- [Commits](https://github.com/alibaba/fastjson/compare/1.2.75...1.2.83)

---
updated-dependencies:
- dependency-name: com.alibaba:fastjson
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-08-14 09:29:59 +08:00
..
.mvn/wrapper [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00
src [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00
.gitignore [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00
mvnw [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00
mvnw.cmd [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00
pom.xml build(deps): bump fastjson in /examples/JDBC/taosdemo (#16096) 2022-08-14 09:29:59 +08:00
readme.md [TD-13408]<test>: move examples back to TDegnine (#10196) 2022-02-10 16:19:06 +08:00

readme.md

cd tests/examples/JDBC/taosdemo
mvn clean package -Dmaven.test.skip=true
# 先建表,再插入的
java -jar target/taosdemo-2.0-jar-with-dependencies.jar -host [hostname] -database [database] -doCreateTable true -superTableSQL "create table weather(ts timestamp, f1 int) tags(t1 nchar(4))" -numOfTables 1000 -numOfRowsPerTable 100000000 -numOfThreadsForInsert 10 -numOfTablesPerSQL 10 -numOfValuesPerSQL 100
# 不建表,直接插入的
java -jar target/taosdemo-2.0-jar-with-dependencies.jar -host [hostname] -database [database] -doCreateTable false -superTableSQL "create table weather(ts timestamp, f1 int) tags(t1 nchar(4))" -numOfTables 1000 -numOfRowsPerTable 100000000 -numOfThreadsForInsert 10 -numOfTablesPerSQL 10 -numOfValuesPerSQL 100

需求:

  1. 可以读lowa的配置文件
  2. 支持JDBC-JNI和JDBC-restful
  3. 读取配置文件,持续执行查询