forked from oracle-samples/oracle-db-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactionGuard.py
76 lines (70 loc) · 2.76 KB
/
TransactionGuard.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#------------------------------------------------------------------------------
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
#
# Portions Copyright 2007-2015, Anthony Tuininga. All rights reserved.
#
# Portions Copyright 2001-2007, Computronix (Canada) Ltd., Edmonton, Alberta,
# Canada. All rights reserved.
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# TransactionGuard.py
# This script demonstrates the use of Transaction Guard to verify if a
# transaction has completed, ensuring that a duplicate transaction is not
# created or attempted if the application chooses to handle the error. This
# feature is only available in Oracle Database 12.1. It follows loosely the
# OCI sample provided by Oracle in its documentation about OCI and Transaction
# Guard.
#
# Run the following as SYSDBA to set up Transaction Guard
#
# grant execute on dbms_app_cont to pythondemo;
#
# declare
# t_Params dbms_service.svc_parameter_array;
# begin
# t_Params('COMMIT_OUTCOME') := 'true';
# t_Params('RETENTION_TIMEOUT') := 604800;
# dbms_service.create_service('orcl-tg', 'orcl-tg', t_Params);
# dbms_service.start_service('orcl-tg');
# end;
# /
#
# This script requires cx_Oracle 5.3 and higher.
#------------------------------------------------------------------------------
import cx_Oracle
import SampleEnv
import sys
# constants
CONNECT_STRING = "localhost/orcl-tg"
# create transaction and generate a recoverable error
pool = cx_Oracle.SessionPool(SampleEnv.GetMainUser(),
SampleEnv.GetMainPassword(), CONNECT_STRING, min=1,
max=9, increment=2)
connection = pool.acquire()
cursor = connection.cursor()
cursor.execute("""
delete from TestTempTable
where IntCol = 1""")
cursor.execute("""
insert into TestTempTable
values (1, null)""")
input("Please kill %s session now. Press ENTER when complete." % \
SampleEnv.GetMainUser())
try:
connection.commit() # this should fail
sys.exit("Session was not killed. Terminating.")
except cx_Oracle.DatabaseError as e:
errorObj, = e.args
if not errorObj.isrecoverable:
sys.exit("Session is not recoverable. Terminating.")
ltxid = connection.ltxid
if not ltxid:
sys.exit("Logical transaction not available. Terminating.")
pool.drop(connection)
# check if previous transaction completed
connection = pool.acquire()
cursor = connection.cursor()
_, committed, completed = cursor.callproc("dbms_app_cont.get_ltxid_outcome",
(cx_Oracle.Binary(ltxid), cursor.var(bool), cursor.var(bool)))
print("Failed transaction was committed:", committed)
print("Failed call was completed:", completed)