gpt4 book ai didi

mysql - 忽略传递给连接 : root 的无效配置选项

转载 作者:行者123 更新时间:2023-12-05 05:01:51 25 4
gpt4 key购买 nike

我开始为我的 NODEJS 应用程序使用 mysql 数据库const mysql = require('mysql2');

const pool = mysql.createPool({
host: 'localhost',
root: 'root',
database:'node-complete',
password: 'Pratik@123'
})

我的 root 密码是上面编码的密码。

我收到这个错误:-

Ignoring invalid configuration option passed to Connection: root.This is currently a warning, but in future versions of MySQL2, an error will be thrown if you pass an invalid configuration option to a Connection

有人可以帮我解决这个问题吗?

module.exports = pool.promise()

最佳答案

连接选项中的属性必须命名为user,而不是root

const pool = mysql.createPool({
host: 'localhost',
user: 'root',
database:'node-complete',
password: 'Pratik@123'
});

关于mysql - 忽略传递给连接 : root 的无效配置选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62540759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com