-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtestiris.py
59 lines (52 loc) · 1.1 KB
/
testiris.py
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
50
51
52
53
54
55
56
57
58
59
import iris
host = "localhost"
port = 1972
namespace = "USER"
username = "_SYSTEM"
password = "SYS"
conn = iris.connect(
host,
port,
namespace,
username,
password,
)
with conn.cursor() as cursor:
cursor = conn.cursor()
res = cursor.execute("DROP TABLE IF EXISTS test")
res = cursor.execute(
"""
CREATE TABLE test (
id IDENTITY NOT NULL,
value VARCHAR(50)
) WITH %CLASSPARAMETER ALLOWIDENTITYINSERT = 1
"""
)
cursor = conn.cursor()
res = cursor.executemany(
"INSERT INTO test (id, value) VALUES (?, ?)", [
(1, 'val1'),
(2, 'val2'),
(3, 'val3'),
(4, 'val4'),
]
)
print(res)
# # cursor = conn.cursor()
# # res = cursor.executemany(
# # "INSERT INTO test DEFAULT VALUES", [
# # None,
# # None,
# # None,
# # None,
# # ]
# # )
res = cursor.executemany(
"INSERT INTO test (value) VALUES (?)", [
'val1',
'val2',
'val3',
'val4',
]
)
# print("res", res)