我正在尝试使我的不和谐机器人打开.sql文件,但无法打开。
我试图通过重新安装sql来修复它,但是它不起作用。
这是我尝试过的代码:
sql.open(path.join(__dirname, 'credits.sql')) // read sql file
.then(() => { // then ?
console.log('Opened') // if the sql opened
sql.run('CREATE TABLE IF NOT EXISTS creditSysteme (id VARCHAR(30), credits BIGINT, timeDaily BIGINT)') // create new table if the table doesn't exists
})
这是我回来的错误:
Error message : TypeError: sql.open is not a function