mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
// compile with
|
|
// gcc connect_example.c -o connect_example -ltaos
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h> // for sleep()
|
|
#include "taos.h"
|
|
|
|
int main() {
|
|
const char *host = "localhost";
|
|
const char *user = "root";
|
|
const char *passwd = "taosdata";
|
|
const char *db = NULL; // if don't want to connect to a default db, set it to NULL or ""
|
|
uint16_t port = 6030; // 0 means use the default port
|
|
TAOS *taos = taos_connect(host, user, passwd, db, port);
|
|
taos_options_connection(taos, TSDB_OPTION_CONNECTION_USER_IP, "localhost");
|
|
sleep(5);
|
|
{
|
|
TAOS_RES *res = taos_query(taos, "show connections");
|
|
if (taos == NULL) {
|
|
fprintf(stderr, "Failed to connect to %s:%hu, ErrCode: 0x%x, ErrMessage: %s.\n", host, port, taos_errno(NULL),
|
|
taos_errstr(NULL));
|
|
taos_cleanup();
|
|
return -1;
|
|
}
|
|
|
|
taos_free_result(res);
|
|
}
|
|
|
|
taos_options_connection(taos, TSDB_OPTION_CONNECTION_USER_IP, NULL);
|
|
{
|
|
{
|
|
TAOS_RES *res = taos_query(taos, "show connections");
|
|
sleep(5);
|
|
if (taos == NULL) {
|
|
fprintf(stderr, "Failed to connect to %s:%hu, ErrCode: 0x%x, ErrMessage: %s.\n", host, port, taos_errno(NULL),
|
|
taos_errstr(NULL));
|
|
taos_cleanup();
|
|
return -1;
|
|
}
|
|
|
|
taos_free_result(res);
|
|
}
|
|
}
|
|
|
|
fprintf(stdout, "Connected to %s:%hu successfully.\n", host, port);
|
|
|
|
/* put your code here for read and write */
|
|
|
|
// close & clean
|
|
taos_close(taos);
|
|
taos_cleanup();
|
|
}
|