文件名称:mysql-helper-es6:mysql 帮助类,支持 async await
文件大小:5KB
文件格式:ZIP
更新时间:2024-05-22 08:36:35
JavaScript
mysql-helper-es6 mysql 帮助类,用 es2017 语法编写 在 Node.js v8.x 运行良好 如果需要 ts 版本,可以看看 Usage 初始化 const MysqlHelper = require('mysql-helper-es6') const mysqlConfig = { host: 'localhost', port: 3306, database: 'mydb' user: 'root', password: 123456, charset: 'utf8mb4' }; const helper = MysqlHelper.getInstance(mysqlConfig); 查询多条数据 // 第1种,promise 写法 const tableName = 'my_table'; const fie
【文件预览】:
mysql-helper-es6-master
----.gitignore(29B)
----package.json(390B)
----package-lock.json(3KB)
----index.js(6KB)
----README.md(4KB)