如何解决:“ TypeError:sql.open不是函数”

时间:2019-07-15 14:01:16

标签: javascript sql discord discord.js

我正在尝试使我的不和谐机器人打开.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

0 个答案:

没有答案