W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
要正常關(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.');
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: