当前位置:Gxlcms > 数据库问题 > nodejs从0到1(mysql)

nodejs从0到1(mysql)

时间:2021-07-01 10:21:17 帮助过:4人阅读

{ 2 host: localhost, 3 user: root, 4 password: 123456, 5 database: testdb 6 }

});

1.2从连接池中取出连接。getConnection方法。

1 pool.getConnection(function (err, connection) {
2         connection.query(sql, function (err, rows) {
3             callback(err, rows);
4             connection.release();//释放链接  
5                });
6     });

1.3当连接不在使用时,用connection对象的release方法将其归还到连接池。connection.release();//释放链接

1.4把一个连接从连接池移除,用connection对象的destroy。connection.destroy();

1.5当一个连接池不再使用时,用连接池对象的end方法关闭连接池。pool.end();

参考内容:http://blog.csdn.net/qq_31280709/article/details/52297957

nodejs从0到1(mysql)

标签:create   blog   关闭   cti   tail   mys   对象   host   1.5   

人气教程排行