@@ -531,14 +531,23 @@ Database Change Notification
531
531
532
532
.. data :: SUBSCR_CQ_QOS_BEST_EFFORT
533
533
534
- This constant is deprecated and will be removed in a future version of
535
- cx_Oracle. Use :data: `cx_Oracle.SUBSCR_QOS_BEST_EFFORT ` instead.
534
+ This constant can be used when creating a subscription and specifies that
535
+ best effort filtering for query result set changes is acceptable. False
536
+ positive notifications may be received. This behaviour may be suitable for
537
+ caching applications.
538
+
539
+ .. deprecated :: 5.3
540
+ Use :data: `~cx_Oracle.SUBSCR_QOS_BEST_EFFORT ` instead.
536
541
537
542
538
543
.. data :: SUBSCR_CQ_QOS_QUERY
539
544
540
- This constant is deprecated and will be removed in a future version of
541
- cx_Oracle. Use :data: `cx_Oracle.SUBSCR_QOS_QUERY ` instead.
545
+ This constant can be used when creating a subscription and specifies that
546
+ notifications should only be sent if the result set of the registered query
547
+ changes. By default no false positive notifictions will be generated.
548
+
549
+ .. deprecated :: 5.3
550
+ Use :data: `~cx_Oracle.SUBSCR_QOS_QUERY ` instead.
542
551
543
552
544
553
.. data :: SUBSCR_QOS_BEST_EFFORT
@@ -558,8 +567,12 @@ Database Change Notification
558
567
559
568
.. data :: SUBSCR_QOS_PURGE_ON_NTFN
560
569
561
- This constant is deprecated and will be removed in a future version of
562
- cx_Oracle. Use :data: `cx_Oracle.SUBSCR_QOS_DEREG_NFY ` instead.
570
+ This constant can be used when creating a subscription and specifies that
571
+ the subscription should be automatically unregistered after the first
572
+ notification has been received.
573
+
574
+ .. deprecated :: 5.3
575
+ Use :data: `~cx_Oracle.SUBSCR_QOS_DEREG_NFY ` instead.
563
576
564
577
565
578
.. data :: SUBSCR_QOS_QUERY
@@ -851,6 +864,8 @@ Types
851
864
NCHAR strings are bound this way in order to avoid the "unimplemented or
852
865
unreasonable conversion requested" error.
853
866
867
+ .. deprecated :: 5.3
868
+
854
869
.. note ::
855
870
856
871
This type is an extension to the DB API definition.
0 commit comments