MariaDB connection with Sequelize
问题 I have been checking for the connectivity of MariaDB, with Sequelize. const Sequelize = require('sequelize'); // Setting up database (MariaDB) connection const sequelize = new Sequelize('dbName', 'usr', 'pass', { host: 'localhost', dialect: 'mariadb' }); But I am getting the following error: /home/lt-196/api/node_modules/sequelize/lib/sequelize.js:236 throw new Error('The dialect ' + this.getDialect() + ' is not supported. Supported dialects: mssql, mysql, postgres, and sqlite.'); ^ Error: