当前位置:Gxlcms > 数据库问题 > Node.js操作SQLite3

Node.js操作SQLite3

时间:2021-07-01 10:21:17 帮助过:3人阅读

fs = require("fs"); var file = process.env.CLOUD_DIR + "/" + "test.db"; var exists = fs.existsSync(file); if(!exists) { console.log("Creating DB file."); fs.openSync(file, "w"); } var sqlite3 = require("sqlite3").verbose(); var db = new sqlite3.Database(file); db.serialize(function() { if(!exists) { db.run("CREATE TABLE Stuff (thing TEXT)"); } var stmt = db.prepare("INSERT INTO Stuff VALUES (?)"); //Insert random data var rnd; for (var i = 0; i < 10; i++) { rnd = Math.floor(Math.random() * 10000000); stmt.run("Thing #" + rnd); } stmt.finalize(); db.each("SELECT rowid AS id, thing FROM Stuff", function(err, row) { console.log(row.id + ": " + row.thing); }); }); db.close();

 

Node.js操作SQLite3

标签:

人气教程排行