This commit is contained in:
zyyang 2020-12-29 17:12:50 +08:00
parent b718854727
commit 8af97223ed
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
const taos = require('../tdengine');
var conn = taos.connect({host: "127.0.0.1", user: "root", password: "taosdata", config: "/etc/taos", port: 6030});
var c1 = conn.cursor();
c1.query('select * from test.weather', true).then(function (result) {
result.pretty();
});
conn.close();