var mysql = require('mysql');
var pool = mysql.createPool({
host: 'localhost',
user: 'nodejs',
password: 'nodejs',
database: 'nodejs',
port: 3306
}); var selectSQL ="show variables like 'wait_timeout'"; pool.getConnection(function (err, conn) {
if (err) console.log("POOL ==> " + err); function query(){
conn.query(selectSQL, function (err, res) {
console.log(new Date());
console.log(res);
conn.release();
});
}
query();
setInterval(query, 5000);
});
相关文章
- 12-05python – 如何检测套接字断开连接? /如何在超时时调用socket.recv?
- 12-05如何让.Net线程支持超时后并自动销毁!
- 12-05关于dubbo的provider和consumer都配置timeout超时时间的情况
- 12-05haproxy 超时自动重发
- 12-05httpclient超时时间设置及代理设置
- 12-05【Pyppeteer】如何进行超时时时间设置
- 12-05大数据基础系列之kafka011生产者缓存超时,幂等性和事务实现
- 12-05windows2008 设置会话超时时间
- 12-05Feign Client的超时时间
- 12-051021 Deepest Root (25分) 从测试点3超时到满分再到代码优化