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
NWJS Version : v0.45.6
Operating System : win7 win10
Expected behavior
I can bulid node_sqlite3.node success,but strart nw.exe will crash;
use the demo code
</div>
<script>
var sqlite3 = require('sqlite3').verbose();
var db = new sqlite3.Database(':memory:');
db.serialize(function () {
db.run("CREATE TABLE lorem (info TEXT)");
var stmt = db.prepare("INSERT INTO lorem VALUES (?)");
for (var i = 0; i < 10; i++) {
stmt.run("Ipsum " + i);
}
stmt.finalize();
db.each("SELECT rowid AS id, info FROM lorem", function (err, row) {
console.log(row.id + ": " + row.info);
});
});
db.close();
</script>
The text was updated successfully, but these errors were encountered:
NWJS Version : v0.45.6
Operating System : win7 win10
Expected behavior
I can bulid node_sqlite3.node success,but strart nw.exe will crash;
use the demo code
The text was updated successfully, but these errors were encountered: