You need to sign in or sign up before continuing.
09-csharp.mdx 10.7 KB
Newer Older
1 2
---
title: C# Connector
D
danielclow 已提交
3 4 5
sidebar_label: C#
description: This document describes the TDengine C# connector.
toc_max_heading_level: 4
6 7 8 9 10
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

G
gccgdb1234 已提交
11
import Preparition from "./_preparation.mdx"
12 13 14 15 16 17 18 19 20
import CSInsert from "../../07-develop/03-insert-data/_cs_sql.mdx"
import CSInfluxLine from "../../07-develop/03-insert-data/_cs_line.mdx"
import CSOpenTSDBTelnet from "../../07-develop/03-insert-data/_cs_opts_telnet.mdx"
import CSOpenTSDBJson from "../../07-develop/03-insert-data/_cs_opts_json.mdx"
import CSQuery from "../../07-develop/04-query-data/_cs.mdx"
import CSAsyncQuery from "../../07-develop/04-query-data/_cs_async.mdx"

`TDengine.Connector` is a C# language connector provided by TDengine that allows C# developers to develop C# applications that access TDengine cluster data.

21
The `TDengine.Connector` connector supports connect to TDengine instances via the TDengine client driver (taosc), providing data writing, querying, subscription, schemaless writing, bind interface, etc.The `TDengine.Connector` also supports WebSocket from v3.0.1 and developers can build connection through DSN, which supports data writing, querying, and parameter binding, etc.
22 23 24

This article describes how to install `TDengine.Connector` in a Linux or Windows environment and connect to TDengine clusters via `TDengine.Connector` to perform basic operations such as data writing and querying.

D
danielclow 已提交
25 26 27
Note: TDengine Connector 3.x is not compatible with TDengine 2.x. In an environment with TDengine 2.x, you must use TDengine.Connector 1.x for the C# connector.

The source code of `TDengine.Connector` is hosted on [GitHub](https://github.com/taosdata/taos-connector-dotnet/tree/3.0).
28

D
danielclow 已提交
29
## Supported platforms
30 31 32 33 34 35 36 37 38

The supported platforms are the same as those supported by the TDengine client driver.

## Version support

Please refer to [version support list](/reference/connector#version-support)

## Supported features

39 40 41 42
<Tabs defaultValue="native">

<TabItem value="native" label="Native Connection">

43 44 45 46 47 48 49
1. Connection Management
2. General Query
3. Continuous Query
4. Parameter Binding
5. Subscription
6. Schemaless

50 51 52 53 54 55 56 57 58 59 60 61
</TabItem>

<TabItem value="rest" label="WebSocket Connection">

1. Connection Management
2. General Query
3. Continuous Query
4. Parameter Binding

</TabItem>
</Tabs>

62 63 64 65 66 67
## Installation Steps

### Pre-installation preparation

* Install the [.NET SDK](https://dotnet.microsoft.com/download)
* [Nuget Client](https://docs.microsoft.com/en-us/nuget/install-nuget-client-tools) (optional installation)
D
dingbo 已提交
68
* Install TDengine client driver, please refer to [Install client driver](/reference/connector/#install-client-driver) for details
69

70
### Install `TDengine.Connector`
71 72

<Tabs defaultValue="CLI">
73
<TabItem value="CLI" label="Native Connection">
74

75
You can reference the `TDengine.Connector` published in Nuget to the current project via the `dotnet` CLI under the path of the existing .NET project.
76

D
danielclow 已提交
77
``` bash
78 79 80
dotnet add package TDengine.Connector
```

81
You may also modify the current.NET project file. You can include the following 'ItemGroup' in your project file (.csproj).
82

83 84 85 86 87
``` XML
  <ItemGroup>
    <PackageReference Include="TDengine.Connector" Version="3.0.*" />
  </ItemGroup>
```
88

89 90 91 92 93 94 95 96
</TabItem>
<TabItem value="source" label="WebSocket Connection">

In this scenario, modifying your project file is required in order to copy the WebSocket dependency dynamic library from the nuget package into your project.
```XML
  <ItemGroup>
    <PackageReference Include="TDengine.Connector" Version="3.0.*" GeneratePathProperty="true" />
  </ItemGroup>
sangshuduo's avatar
sangshuduo 已提交
97
  <Target Name="copyDLLDependency" BeforeTargets="BeforeBuild">
98 99 100 101 102
    <ItemGroup>
      <DepDLLFiles Include="$(PkgTDengine_Connector)\runtimes\**\*.*" />
    </ItemGroup>
    <Copy SourceFiles="@(DepDLLFiles)" DestinationFolder="$(OutDir)" />
  </Target>
103
```
104

105 106
Notice: `TDengine.Connector` only version>= 3.0.2 includes the dynamic library for WebSocket.

107 108 109
</TabItem>
</Tabs>

D
danielclow 已提交
110
## Establish a Connection
111

112

G
gccgdb1234 已提交
113
<Tabs defaultValue="rest">
114 115 116

<TabItem value="native" label="Native Connection">

117
``` csharp
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
using TDengineDriver;

namespace TDengineExample
{

    internal class EstablishConnection
    {
        static void Main(String[] args)
        {
            string host = "localhost";
            short port = 6030;
            string username = "root";
            string password = "taosdata";
            string dbname = "";

            var conn = TDengine.Connect(host, username, password, dbname, port);
            if (conn == IntPtr.Zero)
            {
                Console.WriteLine("Connect to TDengine failed");
            }
            else
            {
                Console.WriteLine("Connect to TDengine success");
            }
            TDengine.Close(conn);
            TDengine.Cleanup();
        }
    }
}

```

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
</TabItem>

<TabItem value="rest" label="WebSocket Connection">

The structure of the DSN description string is as follows:

```text
[<protocol>]://[[<username>:<password>@]<host>:<port>][/<database>][?<p1>=<v1>[&<p2>=<v2>]]
|------------|---|-----------|-----------|------|------|------------|-----------------------|
|   protocol |   | username  | password  | host | port |  database  |  params               |
```

The parameters are described as follows:

* **protocol**: Specify which connection method to use (support http/ws). For example, `ws://localhost:6041` uses Websocket to establish connections. 
* **username/password**: Username and password used to create connections.
* **host/port**: Specifies the server and port to establish a connection. Websocket connections default to `localhost:6041`.
167
* **database**: Specify the default database to connect to. It's optional.
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
* **params**:Optional parameters.

A sample DSN description string is as follows:

```text
ws://localhost:6041/test
```

``` csharp
{{#include docs/examples/csharp/wsConnect/Program.cs}}
```

</TabItem>
</Tabs>

183 184 185 186 187 188
## Usage examples

### Write data

#### SQL Write

G
gccgdb1234 已提交
189
<Tabs defaultValue="rest">
190 191 192

<TabItem value="native" label="Native Connection">

193 194
<CSInsert />

195 196 197 198 199 200 201 202 203 204 205
</TabItem>

<TabItem value="rest" label="WebSocket Connection">

```csharp
{{#include docs/examples/csharp/wsInsert/Program.cs}}
```

</TabItem>
</Tabs>

206 207 208 209 210 211 212 213 214 215 216 217
#### InfluxDB line protocol write

<CSInfluxLine />

#### OpenTSDB Telnet line protocol write

<CSOpenTSDBTelnet />

#### OpenTSDB JSON line protocol write

<CSOpenTSDBJson />

218 219
#### Parameter Binding

G
gccgdb1234 已提交
220
<Tabs defaultValue="rest">
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

<TabItem value="native" label="Native Connection">

``` csharp
{{#include docs/examples/csharp/stmtInsert/Program.cs}}
```

</TabItem>

<TabItem value="rest" label="WebSocket Connection">

```csharp
{{#include docs/examples/csharp/wsStmt/Program.cs}}
```

</TabItem>
</Tabs>

239 240 241 242
### Query data

#### Synchronous Query

G
gccgdb1234 已提交
243
<Tabs defaultValue="rest">
244 245 246

<TabItem value="native" label="Native Connection">

247 248
<CSQuery />

249 250 251 252 253 254 255 256 257 258 259
</TabItem>

<TabItem value="rest" label="WebSocket Connection">

```csharp
{{#include docs/examples/csharp/wsQuery/Program.cs}}
```

</TabItem>
</Tabs>

260 261 262 263 264 265 266
#### Asynchronous query

<CSAsyncQuery />

### More sample programs

|Sample program |Sample program description |
267
|--------------------------------------------------------------------------------------------------------------------|--------------------------------------------|
268 269 270 271 272 273 274 275
| [CURD](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/NET6Examples/Query/Query.cs)                         | Table creation, data insertion, and query examples with TDengine.Connector    |
| [JSON Tag](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/NET6Examples/JSONTag)                             | Writing and querying JSON tag data with TDengine Connector |
| [stmt](https://github.com/taosdata/taos-connector-dotnet/tree/3.0/examples/NET6Examples/Stmt)                                   | Parameter binding with TDengine Connector |
| [schemaless](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/NET6Examples/schemaless)                       | Schemaless writes with TDengine Connector |
| [async query](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/NET6Examples/AsyncQuery/QueryAsync.cs) | Asynchronous queries with TDengine Connector |
| [Subscription](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/NET6Examples/TMQ/TMQ.cs)      | Subscription example with TDengine Connector |
| [Basic WebSocket Usage](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/FrameWork45/WS/WebSocketSample.cs)      | WebSocket basic data in and out with TDengine connector  |
| [WebSocket Parameter Binding](https://github.com/taosdata/taos-connector-dotnet/blob/3.0/examples/FrameWork45/WS/WebSocketSTMT.cs)      | WebSocket parameter binding example |
276 277 278 279 280

## Important update records

| TDengine.Connector | Description |
|--------------------|--------------------------------|
281
|        3.0.2       | Support .NET Framework 4.5 and above. Support .Net standard 2.0. Nuget package includes dynamic library for WebSocket.|
282
|        3.0.1       | Support WebSocket and Cloud,With function query, insert, and parameter binding|
D
danielclow 已提交
283 284
|        3.0.0       | Supports TDengine 3.0.0.0. TDengine 2.x is not supported. Added `TDengine.Impl.GetData()` interface to deserialize query results. |
|        1.0.7       | Fixed TDengine.Query() memory leak. |
285
| 1.0.6 | Fix schemaless bug in 1.0.4 and 1.0.5. |
D
danielclow 已提交
286 287 288 289
| 1.0.5 | Fix Windows sync query Chinese error bug. | 1.0.4 | Fix schemaless bug.   |
| 1.0.4 | Add asynchronous query, subscription, and other functions. Fix the binding parameter bug.    |
| 1.0.3 | Add parameter binding, schemaless, JSON tag, etc. |
| 1.0.2 | Add connection management, synchronous query, error messages, etc.   |
290 291 292 293 294 295 296 297 298 299 300 301 302

## Other descriptions

### Third-party driver

`Taos` is an ADO.NET connector for TDengine, supporting Linux and Windows platforms. Community contributor `Maikebing@@maikebing contributes the connector`. Please refer to:

* Interface download:<https://github.com/maikebing/Maikebing.EntityFrameworkCore.Taos>

## Frequently Asked Questions

1. "Unable to establish connection", "Unable to resolve FQDN"

D
danielclow 已提交
303
  Usually, it's caused by an incorrect FQDN configuration. Please refer to this section in the [FAQ](https://docs.tdengine.com/2.4/train-faq/faq/#2-how-to-handle-unable-to-establish-connection) to troubleshoot.
304

305
2. Unhandled exception. System.DllNotFoundException: Unable to load DLL 'taos' or one of its dependencies: The specified module cannot be found.
306 307 308 309 310 311

  This is usually because the program did not find the dependent client driver. The solution is to copy `C:\TDengine\driver\taos.dll` to the `C:\Windows\System32\` directory on Windows, and create the following soft link on Linux `ln -s /usr/local/taos/driver/libtaos.so.x.x .x.x /usr/lib/libtaos.so` will work.

## API Reference

[API Reference](https://docs.taosdata.com/api/connector-csharp/html/860d2ac1-dd52-39c9-e460-0829c4e5a40b.htm)