【发布时间】:2019-03-11 10:31:33
【问题描述】:
我正在使用 SQLite3 我有一个列,但错误提示未创建列“未定义”。
const SQLite = require('sqlite3').verbose();
const db = new SQLite.Database('./database.sqlite');
db.serialize(function() {
db.run(`INSERT INTO users (id, name, soul, money, level, exp, items, weapon,
armor, inbattle) VALUES(${message.author.id}, ${message.author.name},
"determination", 0, 1, 0, "DogFood", "Stick", "Bandage", "False");`);
})
events.js:183 投掷者; // 未处理的“错误”事件
错误:SQLITE_ERROR:没有这样的列:未定义
【问题讨论】:
标签: javascript node.js sqlite discord.js