sagiegurari / simple-oracledb

Extend capabilities of oracledb with simplified API for quicker development.
Apache License 2.0
36 stars 4 forks source link

query command return only first 100 row #8

Closed behroozshafiabadi closed 8 years ago

behroozshafiabadi commented 8 years ago

hi @sagiegurari when i use connection.query its only return first 100 row...is that any property to change this behavior ??? without simple oracledb i solve it with using resultset

sagiegurari commented 8 years ago

add options: resultset true

connection.query('SELECT * FROM SOME_TABLE', [], {
    resultSet: true
  }, function (error, jsRows) {
    console.log(jsRows);
});