当前位置:网站首页>Nodejs connect mysql
Nodejs connect mysql
2022-07-06 11:36:00 【Advanced diary】
install mysql drive
npm install mysqlConnect mysql database
// Import mysql drive const mysql = require("mysql"); // To configure mysql Connection information const con = mysql.createConnection({ host:"127.0.0.1",//ip Address user:" Database account ", password:" Database password ", port:"3306",// Port number database:"book"// The name of the database to connect to }) // Start connecting con.connect() // establish sql sentence const sql = "select * from users;" // perform sql sentence con.query(sql,(err,result)=>{ if(err){ console.error(err); return } console.log(result); }) // Close the connection con.end()Interested partners can learn together nodejs Knowledge compilation api Interface , You can see https://blog.csdn.net/qq_47824967/article/details/121909375?spm=1001.2014.3001.5501 How to write interfaces
边栏推荐
- Base de données Advanced Learning Notes - - SQL statements
- Are you monitored by the company for sending resumes and logging in to job search websites? Deeply convinced that the product of "behavior awareness system ba" has not been retrieved on the official w
- Machine learning -- census data analysis
- [yarn] yarn container log cleaning
- 【CDH】CDH/CDP 环境修改 cloudera manager默认端口7180
- One click extraction of tables in PDF
- Did you forget to register or load this tag
- 【Flink】CDH/CDP Flink on Yarn 日志配置
- 【yarn】CDP集群 Yarn配置capacity调度器批量分配
- L2-001 emergency rescue (25 points)
猜你喜欢

Double to int precision loss

Wangeditor rich text reference and table usage

When you open the browser, you will also open mango TV, Tiktok and other websites outside the home page

Did you forget to register or load this tag
C语言读取BMP文件

MTCNN人脸检测

MySQL and C language connection (vs2019 version)

Summary of numpy installation problems

分布式节点免密登录

Neo4j installation tutorial
随机推荐
Solve the problem of installing failed building wheel for pilot
SQL time injection
[Blue Bridge Cup 2017 preliminary] buns make up
Word排版(小计)
Request object and response object analysis
QT creator support platform
[BSidesCF_2020]Had_a_bad_day
学习问题1:127.0.0.1拒绝了我们的访问
QT creator runs the Valgrind tool on external applications
【yarn】CDP集群 Yarn配置capacity调度器批量分配
Base de données Advanced Learning Notes - - SQL statements
[蓝桥杯2020初赛] 平面切分
encoderMapReduce 随手记
[yarn] CDP cluster yarn configuration capacity scheduler batch allocation
分布式節點免密登錄
Julia 1.6 1.7 common problem solving
[Flink] Flink learning
L2-007 family real estate (25 points)
DICOM: Overview
數據庫高級學習筆記--SQL語句