Install Dependencies npm install dmhsq-mysql-db Usage Examples Quick operation mysql error handling is not yet perfect. For some errors, refer to mysql error Introducing resources const database = require("dmhsq-mysql-db") Connecting to a database let db = new database({ host: 'xxx', port: 'xxx', user: 'xxxx', password: 'xxxx', database: "xxxx" }) Reference table let collection = db.table("user") Search all collection.get().then(res => { console.log(res) }) Conditional Query collection.where({ username: "dmhsq" }).get().then(res => { console.log(res) }) Inserting Data collection.add({ username: "dmhsq", password: "dmhsq", _id: 123176312 }).then(res => { console.log(res) }) Update data collection.updata({ password: "zccc" }).where({ username: "dmhsq" }).then(res=>{ console.log(res) }) Deleting Data collection.del().where({ username: "dmhsq" }).then(res => { console.log(res) }) This concludes this article on how to quickly operate the MySQL database in a nodejs environment. For more information about how to operate the MySQL database in a nodejs environment, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Linux kernel device driver proc file system notes
>>: How to enable slow query log in MySQL
Table of contents 1. Joint index description 2. C...
Today I saw a little trick for HTML text escaping ...
Table of contents 1. Some concepts you need to un...
Table of contents 1. Baidu Encyclopedia 1. MySQL ...
Environment: VMware VCSA 6.7 (VMware-VCSA-all-6.7...
Table of contents The background is: What will ha...
Anyone who has studied or used HTML should be fam...
Without further ado, let's take a look at the...
Port 80 is also configured. First enter the firew...
Introduction The Docker-Compose project is an off...
MySQL replace and replace into are both frequentl...
FastDFS & Nginx Integration: The tracker is c...
I'm working on electronic archives recently, ...
Managing disk space is an important daily task fo...
1. Basic usage examples of float 1. Let's fir...