--- sidebar_label: Connection title: Connect to TDengine description: "This document explains how to establish connection to TDengine, and briefly introduce how to install and use TDengine connectors." --- import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import ConnJava from "./\_connect_java.mdx"; import ConnGo from "./\_connect_go.mdx"; import ConnRust from "./\_connect_rust.mdx"; import ConnNode from "./\_connect_node.mdx"; import ConnPythonNative from "./\_connect_python.mdx"; import ConnCSNative from "./\_connect_cs.mdx"; import ConnC from "./\_connect_c.mdx"; import ConnR from "./\_connect_r.mdx"; import InstallOnWindows from "../../14-reference/03-connector/\_linux_install.mdx"; import InstallOnLinux from "../../14-reference/03-connector/\_windows_install.mdx"; import VerifyLinux from "../../14-reference/03-connector/\_verify_linux.mdx"; import VerifyWindows from "../../14-reference/03-connector/\_verify_windows.mdx"; Any application programs running on any kind of platforms can access TDengine through the REST API provided by TDengine. For the details, please refer to [REST API](/reference/rest-api/). Besides, application programs can use the connectors of multiple programming languages to access TDengine, including C/C++, Java, Python, Go, Node.js, C#, and Rust. This chapter describes how to establish connection to TDengine and briefly introduce how to install and use connectors. For details about the connectors, please refer to [Connectors](/reference/connector/) ## Establish Connection There are two ways for a connector to establish connections to TDengine: 1. Connection through the REST API provided by taosAdapter component, this way is called "REST connection" hereinafter. 2. Connection through the TDengine client driver (taosc), this way is called "Native connection" hereinafter. Either way, same or similar APIs are provided by connectors to access database or execute SQL statements, no obvious difference can be observed. Key differences: 1. With REST connection, it's not necessary to install TDengine client driver (taosc), it's more friendly for cross-platform with the cost of 30% performance downgrade. When taosc has an upgrade, application does not need to make changes. 2. With native connection, full compatibility of TDengine can be utilized, like [Parameter Binding](/reference/connector/cpp#Parameter Binding-api), [Subscription](reference/connector/cpp#Subscription), etc. But taosc has to be installed, some platforms may not be supported. ## Install Client Driver taosc If choosing to use native connection and the application is not on the same host as TDengine server, TDengine client driver taosc needs to be installed on the host where the application is. If choosing to use REST connection or the application is on the same host as server side, this step can be skipped. It's better to use same version of taosc as the server. ### Install ### Verify After the above installation and configuration are done and making sure TDengine service is already started and in service, the TDengine command-line interface `taos` can be launched to access TDengine. ## Install Connectors If `maven` is used to manage the projects, what needs to be done is only adding below dependency in `pom.xml`. ```xml com.taosdata.jdbc taos-jdbcdriver 2.0.38 ``` Install from PyPI using `pip`: ``` pip install taospy ``` Install from Git URL: ``` pip install git+https://github.com/taosdata/taos-connector-python.git ``` Just need to add `driver-go` dependency in `go.mod` . ```go-mod title=go.mod module goexample go 1.17 require github.com/taosdata/driver-go/v2 develop ``` :::note `driver-go` uses `cgo` to wrap the APIs provided by taosc, while `cgo` needs `gcc` to compile source code in C language, so please make sure you have proper `gcc` on your system. ::: Just need to add `libtaos` dependency in `Cargo.toml`. ```toml title=Cargo.toml [dependencies] libtaos = { version = "0.4.2"} ``` :::info Rust connector uses different features to distinguish the way to establish connection. To establish REST connection, please enable `rest` feature. ```toml libtaos = { version = "*", features = ["rest"] } ``` ::: Node.js connector provides different ways of establishing connections by providing different packages. 1. Install Node.js Native Connector ``` npm i td2.0-connector ``` :::note It's recommend to use Node whose version is between `node-v12.8.0` and `node-v13.0.0`. ::: 2. Install Node.js REST Connector ``` npm i td2.0-rest-connector ``` Just need to add the reference to [TDengine.Connector](https://www.nuget.org/packages/TDengine.Connector/) in the project configuration file. ```xml title=csharp.csproj {12} Exe net6.0 enable enable TDengineExample.AsyncQueryExample ``` Or add by `dotnet` command. ``` dotnet add package TDengine.Connector ``` :::note The sample code below are based on dotnet6.0, they may need to be adjusted if your dotnet version is not exactly same. ::: 1. Download [taos-jdbcdriver-version-dist.jar](https://repo1.maven.org/maven2/com/taosdata/jdbc/taos-jdbcdriver/2.0.38/). 2. Install the dependency package `RJDBC`: ```R install.packages("RJDBC") ``` If the client driver (taosc) is already installed, then the C connector is already available.
## Establish Connection Prior to establishing connection, please make sure TDengine is already running and accessible. The following sample code assumes TDengine is running on the same host as the client program, with FQDN configured to "localhost" and serverPort configured to "6030". :::tip If the connection fails, in most cases it's caused by improper configuration for FQDN or firewall. Please refer to the section "Unable to establish connection" in [FAQ](https://docs.taosdata.com/train-faq/faq). :::