You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/api.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4501,7 +4501,7 @@ The `message` parameter in the notification callback is an object containing the
4501
4501
- `queueName` - the name of the Advanced Queue. Undefined for CQN. This was added in node-oracledb 4.0.
4502
4502
- `queries` - an array of objects specifying the queries which were affected by the Query Change notification. This is only defined if the `type` key is the value [`oracledb.SUBSCR_EVENT_TYPE_QUERY_CHANGE`](#oracledbconstantssubscription). It contains the following key:
4503
4503
- `tables` - an array of objects identical to the objects created for Database Change Notification (see the `tables` property below).
4504
-
- `registered` - a boolean indicating whether the subscription is registered with the database. Will be *false* if `type` is [`oracledb.SUBSCR_EVENT_TYPE_DEREG`](#oracledbconstantssubscription) or if the subscription was created with the [`qos`](#consubscribeoptqos) property set to [`oracledb.SUBSCR_QOS_DEREG_NFY`](#oracledbconstantssubscription).
4504
+
- `registered` - a Boolean indicating whether the subscription is registered with the database. Will be *false* if `type` is [`oracledb.SUBSCR_EVENT_TYPE_DEREG`](#oracledbconstantssubscription) or if the subscription was created with the [`qos`](#consubscribeoptqos) property set to [`oracledb.SUBSCR_QOS_DEREG_NFY`](#oracledbconstantssubscription).
4505
4505
- `tables` - an array of objects specifying the tables which were affected by the notification. This is only defined if `type` is [`oracledb.SUBSCR_EVENT_TYPE_OBJ_CHANGE`](#oracledbconstantssubscription). It contains the following properties:
4506
4506
- `name` - the name of the table which was modified in some way.
4507
4507
- `operation` - an integer mask composed of one or more values of the following constants:
@@ -12767,7 +12767,7 @@ await conn.execute(
12767
12767
```
12768
12768
12769
12769
Because the default bind direction is `BIND_IN`, and the type can be inferred
12770
-
from `result.resultSet`, the PL/SQL procedure call can be simplied to:
12770
+
from `result.resultSet`, the PL/SQL procedure call can be simplified to:
0 commit comments