天蓬老师2017-04-17 12:00:31
Without using the ResultSet, the default maximum number of query results for nodejs to query the Oracle database is 100. If you want to see more, you must set it yourself:
var oracledb = require('oracledb ');
oracledb.maxRows = 50000;
If you use ResultSet, there is no need to set maxRows, and all data can be automatically queried. For specific usage, please refer to the official documentation.
https://github.com/oracle/node-oracledb/blob/master/doc/api.md