Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
8b2618d2
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8b2618d2
编写于
5月 28, 2022
作者:
W
wade zhang
提交者:
GitHub
5月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #13143 from taosdata/docs/dingbo/TD-15801
copy docs-exmple-test to branch 2.4
上级
7ff90601
c457c57c
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
241 addition
and
0 deletion
+241
-0
tests/docs-examples-test/test_R.sh
tests/docs-examples-test/test_R.sh
+14
-0
tests/docs-examples-test/test_c.sh
tests/docs-examples-test/test_c.sh
+50
-0
tests/docs-examples-test/test_csharp.sh
tests/docs-examples-test/test_csharp.sh
+26
-0
tests/docs-examples-test/test_go.sh
tests/docs-examples-test/test_go.sh
+29
-0
tests/docs-examples-test/test_java.sh
tests/docs-examples-test/test_java.sh
+9
-0
tests/docs-examples-test/test_node.sh
tests/docs-examples-test/test_node.sh
+37
-0
tests/docs-examples-test/test_python.sh
tests/docs-examples-test/test_python.sh
+47
-0
tests/docs-examples-test/test_rust.sh
tests/docs-examples-test/test_rust.sh
+29
-0
未找到文件。
tests/docs-examples-test/test_R.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
pgrep taosd
||
taosd
>>
/dev/null 2>&1 &
pgrep taosadapter
||
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/R
jar_path
=
`
find ../../../debug/build
-name
taos-jdbcdriver-
*
-dist
.jar
`
echo
jar_path
=
$jar_path
R
-f
connect_native.r
--args
$jar_path
# R -f connect_rest.r --args $jar_path # bug 14704
tests/docs-examples-test/test_c.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
taosd
>>
/dev/null 2>&1 &
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/c
# 1
gcc connect_example.c
-o
connect_example
-ltaos
./connect_example
# 2
taos
-s
"drop database if exists power"
gcc
-o
insert_example insert_example.c
-ltaos
./insert_example
gcc
-o
async_query_example async_query_example.c
-ltaos
./async_query_example
# 3
taos
-s
"drop database if exists power"
gcc
-o
stmt_example stmt_example.c
-ltaos
./stmt_example
# 4
taos
-s
"drop database if exists power"
gcc
-o
multi_bind_example multi_bind_example.c
-ltaos
./multi_bind_example
# 5
gcc
-o
query_example query_example.c
-ltaos
./query_example
# 6
taos
-s
"drop database if exists test"
gcc
-o
line_example line_example.c
-ltaos
./line_example
# 7
taos
-s
"drop database if exists test"
gcc
-o
telnet_line_example telnet_line_example.c
-ltaos
./telnet_line_example
# 8
taos
-s
"drop database if exists test"
gcc
-o
json_protocol_example json_protocol_example.c
-ltaos
./json_protocol_example
tests/docs-examples-test/test_csharp.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
pgrep taosd
||
taosd
>>
/dev/null 2>&1 &
pgrep taosadapter
||
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/csharp
dotnet run
--project
connect.csproj
taos
-s
"drop database if exists power"
dotnet run
--project
sqlinsert.csproj
dotnet run
--project
query.csproj
dotnet run
--project
asyncquery.csproj
taos
-s
"drop database if exists power"
dotnet run
--project
stmtinsert.csproj
taos
-s
"drop database if exists test"
dotnet run
--project
influxdbline.csproj
taos
-s
"drop database if exists test"
dotnet run
--project
optstelnet.csproj
taos
-s
"drop database if exists test"
dotnet run
--project
optsjson.csproj
tests/docs-examples-test/test_go.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
taosd
>>
/dev/null 2>&1 &
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/go
go mod tidy
go run ./connect/restexample/main.go
taos
-s
"drop database if exists power"
go run ./insert/sql/main.go
taos
-s
"drop database if exists power"
go run ./insert/stmt/main.go
taos
-s
"drop database if exists test"
go run ./insert/line/main.go
taos
-s
"drop database if exists test"
go run ./insert/telnet/main.go
taos
-s
"drop database if exists test"
go run ./insert/json/main.go
go run ./query/sync/main.go
tests/docs-examples-test/test_java.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
taosd
>>
/dev/null 2>&1 &
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/java
mvn
test
\ No newline at end of file
tests/docs-examples-test/test_node.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
pgrep taosd
||
taosd
>>
/dev/null 2>&1 &
pgrep taosadapter
||
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/node
npm
install
cd
restexample
;
node connect.js
cd
../nativeexample
node connect.js
taos
-s
"drop database if exists power"
node insert_example.js
node query_example.js
taos
-s
"drop database if exists power"
node param_bind_example.js
taos
-s
"drop database if exists power"
node multi_bind_example.js
taos
-s
"drop database if exists test"
node influxdb_line_example.js
taos
-s
"drop database if exists test"
node opentsdb_telnet_example.js
taos
-s
"drop database if exists test"
node opentsdb_json_example.js
tests/docs-examples-test/test_python.sh
0 → 100644
浏览文件 @
8b2618d2
#!/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_example.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
tests/docs-examples-test/test_rust.sh
0 → 100644
浏览文件 @
8b2618d2
#!/bin/bash
set
-e
pgrep taosd
||
taosd
>>
/dev/null 2>&1 &
pgrep taosadapter
||
taosadapter
>>
/dev/null 2>&1 &
cd
../../docs-examples/rust
cargo run
-p
nativeexample
--example
connect
cargo run
-p
restexample
--example
connect
taos
-s
"drop database if exists power"
cargo run
-p
restexample
--example
insert_example
cargo run
-p
restexample
--example
query_example
taos
-s
"drop database if exists power"
cargo run
-p
nativeexample
--example
stmt_example
taos
-s
"drop database if exists test"
cargo run
-p
schemalessexample
--example
influxdb_line_example
taos
-s
"drop database if exists test"
cargo run
-p
schemalessexample
--example
opentsdb_telnet_example
taos
-s
"drop database if exists test"
cargo run
-p
schemalessexample
--example
opentsdb_json_example
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录