Detailed explanation of how to quickly operate MySQL database in nodejs environment

Detailed explanation of how to quickly operate MySQL database in nodejs environment

GitHub address: https://github.com/dmhsq/dmhsq-mysql-db
Can be used in Tencent Cloud SCF and cloud development environment Error handling is not yet complete Error reference mysql error Introduce dependency package npm install dmhsq-mysql-db
The effect is as follows: Simplifies the use of MySQL

insert image description here

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:
  • Nodejs error handling process record
  • A complete example of implementing a timed crawler with Nodejs
  • Differences between this keyword in NodeJS and browsers
  • The core process of nodejs processing tcp connection
  • Detailed explanation of Nodejs array queue and forEach application
  • Learn asynchronous programming in nodejs in one article
  • How to create a child process in nodejs
  • How to use worker_threads to create new threads in nodejs
  • Implementation of WeChat applet message push in Nodejs
  • Example code for implementing WeChat account splitting with Nodejs
  • Detailed explanation of asynchronous programming knowledge points in nodejs
  • The simplest way to connect to the database with nodejs+express
  • How to downgrade the installed nodejs high version to a lower version in windows (graphic tutorial)
  • Detailed explanation of the implementation process of NodeJS CORS configuration
  • How to use nodejs to automatically send email reminders at regular intervals (super practical)
  • Simple deployment of nodeJs project in Alibaba Cloud
  • How to use nodejs to implement command line games
  • Understanding what Node.js is is so easy

<<:  Linux kernel device driver proc file system notes

>>:  How to enable slow query log in MySQL

Recommend

The leftmost matching principle of MySQL database index

Table of contents 1. Joint index description 2. C...

HTML text escape tips

Today I saw a little trick for HTML text escaping ...

Detailed introduction to the MySQL installation tutorial under Windows

Table of contents 1. Some concepts you need to un...

Practical MySQL + PostgreSQL batch insert update insertOrUpdate

Table of contents 1. Baidu Encyclopedia 1. MySQL ...

VMware vSphere 6.7 (ESXI 6.7) graphic installation steps

Environment: VMware VCSA 6.7 (VMware-VCSA-all-6.7...

js implements axios limit request queue

Table of contents The background is: What will ha...

HTML hyperlink a tag_Powernode Java Academy

Anyone who has studied or used HTML should be fam...

Sample code for implementing 3D book effect with CSS

Without further ado, let's take a look at the...

How to configure Linux firewall and open ports 80 and 3306

Port 80 is also configured. First enter the firew...

Docker-compose image release process analysis of springboot project

Introduction The Docker-Compose project is an off...

Explanation of the usage of replace and replace into in MySQL

MySQL replace and replace into are both frequentl...

FastDFS and Nginx integration to achieve code analysis

FastDFS & Nginx Integration: The tracker is c...

Vue sample code for online preview of office files

I'm working on electronic archives recently, ...

Summary of Linux Logical Volume Management (LVM) usage

Managing disk space is an important daily task fo...

Detailed examples of float usage in HTML/CSS

1. Basic usage examples of float 1. Let's fir...