docs(node):fix node-rest example failed (#19797)

This commit is contained in:
xiaolei li 2023-02-04 02:10:47 +08:00 committed by GitHub
parent a1b402d1a1
commit 4a87a58c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 6 deletions

View File

@ -3,18 +3,14 @@ const { options, connect } = require("@tdengine/rest");
async function test() {
options.path = "/rest/sql";
options.host = "localhost";
options.port = 6041;
let conn = connect(options);
let cursor = conn.cursor();
try {
let res = await cursor.query("SELECT server_version()");
res.toString();
console.log("res.getResult()",res.getResult());
} catch (err) {
console.log(err);
}
}
test();
// output:
// server_version() |
// ===================
// 3.0.0.0 |