nodejs環境快速操作mysql數據庫的方法詳解
github地址https://github.com/dmhsq/dmhsq-mysql-db
可用於騰訊雲SCF以及雲開發環境
錯誤處理尚未完善 錯誤參考mysql錯誤
引入依賴包 npm install dmhsq-mysql-db
效果如下
簡化瞭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數據庫內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- python 基於PYMYSQL使用MYSQL數據庫
- MySQL的安裝與配置詳細教程
- bitbucket搭建詳細過程記錄
- MySQL8.0.26的安裝與簡化教程(全網最全)
- Node連接MySQL並封裝其增刪改查的實現代碼