From c8c44ff698f8cd972b24650700f59286972c50e0 Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Fri, 18 May 2018 14:23:08 -0600 Subject: [PATCH] Rename sample to match feature name. --- samples/{QueryChangeNotification.py => CQN.py} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename samples/{QueryChangeNotification.py => CQN.py} (88%) diff --git a/samples/QueryChangeNotification.py b/samples/CQN.py similarity index 88% rename from samples/QueryChangeNotification.py rename to samples/CQN.py index 798d901..ec33e5b 100644 --- a/samples/QueryChangeNotification.py +++ b/samples/CQN.py @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------ -# Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. +# Copyright 2016, 2018, Oracle and/or its affiliates. All rights reserved. # # Portions Copyright 2007-2015, Anthony Tuininga. All rights reserved. # @@ -8,10 +8,10 @@ #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ -# QueryChangeNotification.py -# This script demonstrates using query change notification in Python, a -# feature that is available in Oracle 11g. Once this script is running, use -# another session to insert, update or delete rows from the table +# CQN.py +# This script demonstrates using continuous query notification in Python, a +# feature that is available in Oracle 11g and later. Once this script is +# running, use another session to insert, update or delete rows from the table # cx_Oracle.TestTempTable and you will see the notification of that change. # # This script requires cx_Oracle 5.3 and higher.