mysql promise:mysql的包装器使API易于使用和实现 源码
@ node-mysql / mysql 包装器,使API易于使用和实现 需要Node.js 12以上版本(由于使用Class私有字段) 安装 $ npm i @node-mysql/mysql --save 客户 例子 const { Pool , Client } = require ( '@node-mysql/mysql' ) ; const config = { host : 'localhost' , port : '3306' , user : 'root' , password : '123456' } ; ( async ( ) => { const
用户评论