-
Notifications
You must be signed in to change notification settings - Fork 13
/
AGKRBatchInsert.ts
49 lines (37 loc) · 1.64 KB
/
AGKRBatchInsert.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2023 by Teradata Corporation. All rights reserved.
// This sample program demonstrates how to insert a batch of rows with Auto-Generated Key Retrieval (AGKR).
// @ts-ignore
import { TeradataConnection, TeradataCursor } from "teradatasql";
const con: TeradataConnection = new TeradataConnection();
con.connect({ host: "whomooz", user: "guest", password: "please" });
const cur: TeradataCursor = con.cursor();
const sTableName: string = "agkrdemo";
cur.execute("drop table " + sTableName, undefined, 3807);
cur.execute("create table " + sTableName + " (c1 integer generated by default as identity, c2 varchar(100))");
try {
console.log("Using AGKR option C to return identity column values only");
cur.execute("{fn teradata_agkr(C)}insert into " + sTableName + " (c2) values (?)", [["abc"], ["def"], ["ghi"]]);
console.log("Each identity column value is returned in a separate single-row result set");
while (true) {
console.log(cur.fetchall());
if (!cur.nextset()) {
break;
}
}
console.log("Using AGKR option R to return entire inserted rows");
cur.execute("{fn teradata_agkr(R)}insert into " + sTableName + " (c2) values (?)", [["jkl"], ["mno"], ["pqr"]]);
console.log("Each inserted row is returned in a separate single-row result set");
while (true) {
console.log(cur.fetchall());
if (!cur.nextset()) {
break;
}
}
console.log("Final contents of table");
cur.execute("select * from " + sTableName + " order by 1");
console.log(cur.fetchall());
} finally {
cur.execute("drop table " + sTableName);
}
cur.close();
con.close();