I try to load my xlsx file and it contains about 200,000 rows. When I use the code to load the file:
alasql.promise('SELECT * FROM XLSX("' + fileUrl + '")')
.then(function (res) {console.log(res)});
It only show 65535 records of the arrays. What could I do if I want to load all data? Thank you!