Skip to main content

Connect with R Language

Configuration

After completing the installation of the R programming environment, you need to perform some configuration steps so that the RJDBC library can connect to and access the TDengine time series database correctly.

  1. Load the RJDBC library and other necessary libraries in your R script:
library(DBI)
library(rJava)
library(RJDBC)
  1. Set the JDBC driver path and JDBC URL:
# Set the JDBC driver path (modify it based on where you actually saved it)
driverPath <- "/path/to/taos-jdbcdriver-X.X.X-dist.jar"

# Set the JDBC URL (modify it according to your specific environment)
url <- "<jdbcURL>"
  1. Load the JDBC driver:
# Load the JDBC driver
drv <- JDBC("com.taosdata.jdbc.rs.RestfulDriver", driverPath)
  1. Create a connection to the TDengine database:
# Create a database connection
conn <- dbConnect(drv, url)
  1. Once the connection is successful, you can use the conn object to perform various database operations such as querying data, inserting data, etc.