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

  介绍

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


安装依赖

npm  install  dmhsq-mysql-db

使用示例

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

引入资源

const  database =,要求(“dmhsq-mysql-db")

连接数据库

let  db =, new 数据库({   主持人:,& # 39;xxx # 39;   港口:& # 39;xxx # 39;   用户:& # 39;xxxx # 39;   密码:& # 39;xxxx # 39;   数据库:,“xxxx"   })

引用表

let  collection =, db.table (“user")

查询全部

collection.get(),然后(res =祝辞,{   console.log (res)   })

条件查询

collection.where ({   用户名:,“dmhsq"   }). get(),然后(res =祝辞,{   console.log (res)   })

插入数据

collection.add ({   用户名:,“dmhsq"   密码:,“dmhsq",   _id: 123176312   })(res =祝辞,{   console.log (res)   })

更新数据

collection.updata ({   密码:,“zccc"   })。({   用户名:,“dmhsq"   })(res=祝辞{   console.log (res)   })

删除数据

collection.del()其中({   用户名:,“dmhsq"   })(res =祝辞,{   console.log (res)   })

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

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