测试连接

你可以使用 .authenticate() 函数来测试连接.

  1. sequelize
  2. .authenticate()
  3. .then(() => {
  4. console.log('Connection has been established successfully.');
  5. })
  6. .catch(err => {
  7. console.error('Unable to connect to the database:', err);
  8. });

关闭连接

Sequelize 将默认保持连接持续,并对所有查询使用相同的连接. 如果需要关闭连接,请调用sequelize.close()(这是异步的并返回Promise).