-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathupdate_user.py
40 lines (31 loc) · 1.19 KB
/
update_user.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
import oracledb
import config
import time
def print_current_row(cursor: oracledb.Cursor, first_name: str = "Rica") -> None:
print(f"{first_name}'s current information")
statement = "select * from CUSTOMERS where first_name = :1"
cursor.execute(statement, [first_name])
results = cursor.fetchall()
for result in results:
print(result)
def update_row(cursor: oracledb.Cursor,
connection: oracledb.Connection,
first_name: str = "Rica") -> None:
statement = "update CUSTOMERS set avg_credit_spend = avg_credit_spend+1 where first_name = :1"
print(f"increasing {first_name}'s average credit spend by $1")
cursor.execute(statement, [first_name])
connection.commit()
if __name__=="__main__":
with oracledb.connect(
user = config.username,
password = config.password,
dsn = config.dsn,
port = config.port) as connection:
cursor = connection.cursor()
try:
while True:
print_current_row(cursor)
update_row(cursor, connection)
time.sleep(5)
except KeyboardInterrupt:
print("\nclosing")