demo.c 3.1 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

H
Haojun Liao 已提交
16
// TAOS standard API example. The same syntax as MySQL, but only a subset
H
hzcheng 已提交
17 18 19 20 21
// to compile: gcc -o demo demo.c -ltaos

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
22
#include <taos.h>  // TAOS header file
23

H
hzcheng 已提交
24 25 26 27
int main(int argc, char *argv[]) {
  TAOS *    taos;
  char      qstr[1024];
  TAOS_RES *result;
H
Haojun Liao 已提交
28

H
hzcheng 已提交
29 30 31 32 33
  // connect to server
  if (argc < 2) {
    printf("please input server-ip \n");
    return 0;
  }
H
Haojun Liao 已提交
34

H
hzcheng 已提交
35 36
  // init TAOS
  taos_init();
H
Haojun Liao 已提交
37

H
hzcheng 已提交
38 39
  taos = taos_connect(argv[1], "root", "taosdata", NULL, 0);
  if (taos == NULL) {
H
Haojun Liao 已提交
40
    printf("failed to connect to server, reason:%s\n", taos_errstr(taos));
H
hzcheng 已提交
41 42
    exit(1);
  }
H
Haojun Liao 已提交
43
  printf("success to connect to server\n");
H
Haojun Liao 已提交
44 45


H
hzcheng 已提交
46
  taos_query(taos, "drop database demo");
S
Shuduo Sang 已提交
47 48 49

  result = taos_query(taos, "create database demo");
  if (result == NULL) {
H
hzcheng 已提交
50 51 52 53
    printf("failed to create database, reason:%s\n", taos_errstr(taos));
    exit(1);
  }
  printf("success to create database\n");
H
Haojun Liao 已提交
54

H
hzcheng 已提交
55
  taos_query(taos, "use demo");
H
Haojun Liao 已提交
56

H
hzcheng 已提交
57
  // create table
S
Shuduo Sang 已提交
58
  if (taos_query(taos, "create table m1 (ts timestamp, ti tinyint, si smallint, i int, bi bigint, f float, d double, b binary(10))") == 0) {
H
hzcheng 已提交
59 60 61 62
    printf("failed to create table, reason:%s\n", taos_errstr(taos));
    exit(1);
  }
  printf("success to create table\n");
H
Haojun Liao 已提交
63

H
hzcheng 已提交
64 65
  // sleep for one second to make sure table is created on data node
  // taosMsleep(1000);
H
Haojun Liao 已提交
66

H
hzcheng 已提交
67 68 69
  // insert 10 records
  int i = 0;
  for (i = 0; i < 10; ++i) {
S
Shuduo Sang 已提交
70 71
    sprintf(qstr, "insert into m1 values (%ld, %d, %d, %d, %d, %f, %lf, '%s')", 1546300800000 + i * 1000, i, i, i, i*10000000, i*1.0, i*2.0, "hello");
    printf("qstr: %s\n", qstr);
H
hzcheng 已提交
72
    if (taos_query(taos, qstr)) {
S
Shuduo Sang 已提交
73
      printf("insert row: %i, reason:%s\n", i, taos_errstr(taos));
H
hzcheng 已提交
74 75 76 77
    }
    //sleep(1);
  }
  printf("success to insert rows, total %d rows\n", i);
H
Haojun Liao 已提交
78

H
hzcheng 已提交
79 80
  // query the records
  sprintf(qstr, "SELECT * FROM m1");
H
Haojun Liao 已提交
81 82 83
  result = taos_query(taos, qstr);
  if (result == NULL || taos_errno(result) != 0) {
    printf("failed to select, reason:%s\n", taos_errstr(result));
H
hzcheng 已提交
84 85
    exit(1);
  }
H
[TD-98]  
hjxilinx 已提交
86

H
hjxilinx 已提交
87
  TAOS_ROW    row;
H
hzcheng 已提交
88
  int         rows = 0;
S
Shuduo Sang 已提交
89
  int         num_fields = taos_field_count(result);
H
hzcheng 已提交
90
  TAOS_FIELD *fields = taos_fetch_fields(result);
S
Shuduo Sang 已提交
91
  char        temp[1024];
H
Haojun Liao 已提交
92

S
Shuduo Sang 已提交
93
  printf("num_fields = %d\n", num_fields);
H
hjxilinx 已提交
94 95 96 97 98 99 100
  printf("select * from table, result:\n");
  // fetch the records row by row
  while ((row = taos_fetch_row(result))) {
    rows++;
    taos_print_row(temp, row, fields, num_fields);
    printf("%s\n", temp);
  }
H
Haojun Liao 已提交
101

H
hzcheng 已提交
102 103 104 105
  taos_free_result(result);
  printf("====demo end====\n\n");
  return getchar();
}