1 Star 0 Fork 0

fengluzhe/xiaowaiwang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mysql.js 557 Bytes
一键复制 编辑 原始数据 按行查看 历史
冯鲁哲 提交于 2022-01-23 23:13 . init
var mysql = require('mysql');
var connection = mysql.createConnection({
host: '82.157.148.14',
port: '3306',
user: 'root',
password: 'msjl888',
database: 'xiaowaiwang'
});
connection.connect(function(err) {
if (err) {
console.error(66666666666666666,err.stack);
connection.end();
}
connection.query(`select * from user`, (error, results) => {
if (error) {
console.log(333);
console.log(555,error);
connection.end();
return;
}
connection.end();
});
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengluzhe/xiaowaiwang.git
[email protected]:fengluzhe/xiaowaiwang.git
fengluzhe
xiaowaiwang
xiaowaiwang
master

搜索帮助