nodejs环境怎么快速操作mysql数据库

2023-06-06,

这篇文章给大家分享的是有关nodejs环境怎么快速操作mysql数据库的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

安装依赖

npm install dmhsq-mysql-db

使用示例

快速操作mysql 错误处理尚未完善 部分错误参考mysql错误

引入资源

const database = require("dmhsq-mysql-db")

连接数据库

let db = new database({
	host: 'xxx',
	port: 'xxx',
	user: 'xxxx',
	password: 'xxxx',
	database: "xxxx"
})

引用表

let collection = db.table("user")

查询全部

collection.get().then(res => {
	console.log(res)
})

条件查询

collection.where({
	username: "dmhsq"
}).get().then(res => {
	console.log(res)
})

插入数据

collection.add({
	username: "dmhsq",
	password: "dmhsq",
	_id: 123176312
}).then(res => {
	console.log(res)
})

更新数据

collection.updata({
	password: "zccc"
}).where({
	username: "dmhsq"
}).then(res=>{
	console.log(res)
})

删除数据

collection.del().where({
	username: "dmhsq"
}).then(res => {
	console.log(res)
})

感谢各位的阅读!关于“nodejs环境怎么快速操作mysql数据库”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

《nodejs环境怎么快速操作mysql数据库.doc》

下载本文的Word格式文档,以方便收藏与打印。