Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
79fe8e5d
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看板
未验证
提交
79fe8e5d
编写于
4月 27, 2022
作者:
W
wade zhang
提交者:
GitHub
4月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #11929 from taosdata/docs/wade-20220427-c++
docs: correct installation reference in C++ connector page
上级
bfd6ff9c
e75d3095
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
10 deletion
+10
-10
docs-cn/14-reference/03-connector/cpp.mdx
docs-cn/14-reference/03-connector/cpp.mdx
+10
-10
未找到文件。
docs-cn/14-reference/03-connector/cpp.mdx
浏览文件 @
79fe8e5d
...
...
@@ -10,14 +10,14 @@ C/C++ 开发人员可以使用 TDengine 的客户端驱动,即C/C++连接器
#include <taos.h>
```
TDengine 服务端或客户端安装后,
taos.h
位于:
TDengine 服务端或客户端安装后,
`taos.h`
位于:
- Linux:`/usr/local/taos/include`
- Windows:`C:\TDengine\include`
TDengine 客户端驱动的动态库位于:
- Linux:
/usr/local/taos/driver/libtaos.so
- Windows:
C:\TDengine\taos.dll
- Linux:
`/usr/local/taos/driver/libtaos.so`
- Windows:
`C:\TDengine\taos.dll`
## 支持的平台
...
...
@@ -29,7 +29,7 @@ TDengine 客户端驱动的版本号与 TDengine 服务端的版本号是一一
## 安装步骤
TDengine 客户端驱动的安装请参考 [安装指南](/
operation/pkg-install
)
TDengine 客户端驱动的安装请参考 [安装指南](/
reference/connector#安装步骤
)
## 建立连接
...
...
@@ -37,7 +37,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
下面为建立连接的示例代码,其中省略了查询和写入部分,展示了如何建立连接、关闭连接以及清除资源。
```c
++
```c
TAOS *taos = taos_connect("localhost:6030", "root", "taosdata", NULL, 0);
if (taos == NULL) {
printf("failed to connect to server, reason:%s\n", "null taos" /*taos_errstr(taos)*/);
...
...
@@ -66,7 +66,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
<details>
<summary>同步查询</summary>
```c
++
```c
{{#include examples/c/demo.c}}
```
...
...
@@ -77,7 +77,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
<details>
<summary>异步查询</summary>
```c
++
```c
{{#include examples/c/asyncdemo.c}}
```
...
...
@@ -88,7 +88,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
<details>
<summary>参数绑定</summary>
```c
++
```c
{{#include examples/c/prepare.c}}
```
...
...
@@ -99,7 +99,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
<details>
<summary>无模式写入</summary>
```c
++
```c
{{#include examples/c/schemaless.c}}
```
...
...
@@ -110,7 +110,7 @@ TDengine 客户端驱动的安装请参考 [安装指南](/operation/pkg-install
<details>
<summary>订阅和消费</summary>
```c
++
```c
{{#include examples/c/subscribe.c}}
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录