mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* docs: add R example source code * test: check if RJDBC was installed * test: add R test scripts * test: chmod of test_R.sh * test: fix test_go.sh; add R sample to document * test: add test scripts to cases.task * test: fix errors caused by tset_python.sh and test_java.sh * test: fix test_python.sh * test: modify java test case and improve opentsdb-json.mdx * test: fix test_R.sh
47 lines
713 B
Bash
Executable file
47 lines
713 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
taosd >> /dev/null 2>&1 &
|
|
taosadapter >> /dev/null 2>&1 &
|
|
|
|
cd ../../docs-examples/python
|
|
|
|
# 1
|
|
taos -s "create database if not exists log"
|
|
python3 connect_exmaple.py
|
|
|
|
# 2
|
|
taos -s "drop database if exists power"
|
|
python3 native_insert_example.py
|
|
|
|
# 3
|
|
taos -s "drop database power"
|
|
python3 bind_param_example.py
|
|
|
|
# 4
|
|
taos -s "drop database power"
|
|
python3 multi_bind_example.py
|
|
|
|
# 5
|
|
python3 query_example.py
|
|
|
|
# 6
|
|
python3 async_query_example.py
|
|
|
|
# 7
|
|
taos -s "drop database if exists test"
|
|
python3 line_protocol_example.py
|
|
|
|
# 8
|
|
taos -s "drop database test"
|
|
python3 telnet_line_protocol_example.py
|
|
|
|
# 9
|
|
taos -s "drop database test"
|
|
python3 json_protocol_example.py
|
|
|
|
# 10
|
|
python3 subscribe_demo.py
|
|
|
|
|