Database Setup in Nodejs | MYSQL|Express.js

Pubblicato il: 21 maggio 2024
sul canale di: Learning Curve
144
3

Database Setup in Node JS
-Create a schema named student_db
-Create tables named students
-id int
-name varchar
-rol_no int
-fees int
-class int
-medium varchar(45)
-Add manual data/dummy values in MYSQL
INSERT INTO students (name, rol_no, fees, class, medium) VALUES
('John Doe', 1, 1500, 10, 'English'),
('Jane Smith', 2, 1500, 10, 'English'),
('Michael Brown', 3, 1400, 9, 'French'),
('Emily Davis', 4, 1600, 11, 'English'),
('Daniel Wilson', 5, 1550, 10, 'Spanish');
-Connect the MYSQL database with nodejs
-Search for MYSQL pkg on website
-pkg name:mysql2
-Create a new folder named config in root directory
-Create db.js file
const mysql=require('mysql2')
refer the documentation on npmjs.com and search for the packages
const mysqlPool = mysql.createPool({
host: '127.0.0.1',
user: 'root',
database: 'student_db',
port:3306,
});
module.exports=mysqlPool;
-Go to server.js - const mysql =require('mysql2/promise')
-import the mysqlPool and use the query function in server.js
-Next will create the REST API in other video.
#nodejs
#javascript
#fullstack
#backend
#programming
#coding
#webdevelopment
#developer
#softwaredevelopment


In questa pagina del sito puoi guardare il video online Database Setup in Nodejs | MYSQL|Express.js della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Learning Curve 21 maggio 2024, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 144 volte e gli è piaciuto 3 spettatori. Buona visione!