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
*Error error* | If `subscribe()` succeeds, `error` is NULL. If an error occurs, then `error` contains the [error message](#errorobj).
3951
-
*Object result* | For [CQN](#cqn) `oracledb.SUBSCR_NAMESPACE_DBCHANGE` subscriptions this contains a single property `regId` corresponding the value of `REGID` in the database view `USER_CHANGE_NOTIFICATION_REGS` or the value of `REG_ID` in `USER_SUBSCR_REGISTRATIONS`. For [AQ](#aq) `oracledb.SUBSCR_NAMESPACE_AQ` subscriptions, `regId`is undefined.
3957
+
*Object result* | For [CQN](#cqn) `oracledb.SUBSCR_NAMESPACE_DBCHANGE` subscriptions this contains a single property `regId` corresponding the value of `REGID` in the database view `USER_CHANGE_NOTIFICATION_REGS` or the value of `REG_ID` in `USER_SUBSCR_REGISTRATIONS`. For [AQ](#aq) `oracledb.SUBSCR_NAMESPACE_AQ` subscriptions, `regId`is undefined. Due to Node.js type limitations, the largest `regId` shown will be 2<sup>32</sup> - 1. Larger values will wrap.
3952
3958
3953
3959
The `result` callback parameter was added in node-oracledb 4.0.
3954
3960
@@ -5569,6 +5575,9 @@ This method was added in node-oracledb 3.0.
5569
5575
5570
5576
The number of documents matching the SodaOperation criteria.
5571
5577
5578
+
Due to Node.js type limitations, the largest `count` value will be
5579
+
2<sup>32</sup> - 1, even if more rows exist. Larger values will wrap.
0 commit comments