如何使用nodejs与mysql进行数据交互

发布网友 发布时间:2022-04-22 01:37

我来回答

1个回答

热心网友 时间:2022-04-07 23:59

先npm install mysql

然后代码中就可以require('mysql');

就可以使用了

var mysql = require('mysql');var pool  = mysql.createPool(config);pool.getConnection(function(err, connection) {
// Use the connection
connection.query( 'SELECT something FROM sometable', function(err, rows) {
// And done with the connection.
connection.end();

// Don't use the connection here, it has been returned to the pool.
});});

js代码透明,你在写好代码提交给别人的时候,或是部署的时候,用Jshaman给代码加密一下,别人就看不了你的代码了

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
2.3933s