LoginSignup
1
0

More than 3 years have passed since last update.

【knex】this.dialectに関してのエラー解決

Posted at

エラー文

Using 'this.dialect' to identify the client is deprecated and support for it will be removed in the future. Please use configuration option 'client' instead.

解決法

var knex = require('knex')({
    dialect: 'mysql',
    connection: {
        host: 'localhost',
        user: 'root',
        password: '(パスワード)',
        database: '(データベース名)',
        charset: 'utf-8'
    }
});

上の文の、dialectをclientに変更する。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0