Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zhengwei

zhengwei6668ISC1.0.2

数据库操作

mysql

readme

安装

npm i zhengwei

用包

const myModule = require('zhengwei')

myModule.connection.query('select * from herolist', function (error, results, fields) {

​ if (error) throw error;

​ console.log('The solution is: ', results);

});