關(guān)閉 Node.js 與 MySQL 數(shù)據(jù)庫連接

2022-02-17 15:44 更新

要正常關(guān)閉數(shù)據(jù)庫連接,請(qǐng)?jiān)赾onnection對(duì)象上調(diào)用end()方法。

end()方法確保在數(shù)據(jù)庫連接關(guān)閉之前始終執(zhí)行所有剩余的查詢。

connection.end(function(err) {
  if (err) {
    return console.log('error:' + err.message);
  }
  console.log('Close the database connection.');
});
SQL

要立即強(qiáng)制連接,可以使用destroy()方法。 destroy()方法保證不會(huì)再為連接觸發(fā)回調(diào)或事件。

connection.destroy();
Js
請(qǐng)注意,destroy()方法不會(huì)像end()方法那樣采取任何回調(diào)參數(shù)。

到目前為止,整個(gè)connect.js文件的完整代碼如下 -

let mysql = require('mysql');

let connection = mysql.createConnection({
    host: 'localhost',
    user: 'root',
    password: '123456',
    database: 'todoapp'
});

connection.connect(function(err) {
  if (err) {
    return console.error('error: ' + err.message);
  }

  console.log('Connected to the MySQL server.');
});

//connection.destroy();
connection.end(function(err) {
  if (err) {
    return console.log('error:' + err.message);
  }
  console.log('Close the database connection.');
});
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)