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
Here console.log(table), console.log(row) working as expected with actual data. But console.log(data); or console.log(JSON.stringify(data)); are returning zero array
The text was updated successfully, but these errors were encountered:
Which version are you using?
2.3.7
Describe the bug
rawDump method is returning zero array (["0","0","0","0"]) instead of actual data
Expected behavior
It should return complete database tables data
Code used
nSQL().rawDump([], false, (table, row) => {
console.log(table);
console.log(row);
}).then((data) => {
console.log(data);
console.log(JSON.stringify(data));
});
Here console.log(table), console.log(row) working as expected with actual data. But console.log(data); or console.log(JSON.stringify(data)); are returning zero array
The text was updated successfully, but these errors were encountered: