Node.js + MySQL CRUD - GET,POST,PUT and DELETE

preview_player
Показать описание


Content Discussed :

📂 GitHub Repository

💖 Buy me a Coffee

🌀 Related Videos

🔗 Find me in

#NodeJS #MySql #CodAffection
Рекомендации по теме
Комментарии
Автор

Wow...simply wow. Took a bit for me to get everything installed and to work out my syntax errors but your tutorial is flawless. Thanks!

pillboxgaming
Автор

At 11:10 I felt a CATHARTIC feeling, thank you mate!!

That was the point when I understood the whole meaning of "API" and "backend". :)

I started my learning path with courses on frontend, how to create simple webpages (HTML, CSS, JavaScript basics),
then I learned the SQL queries of MS SQL and MySQL,
and now I could connect the two with your help, thanks a lot!!

szabolcsjobbagy
Автор

[04:40] : index.js
[07:46] : express
[18:24] : Insert an employees (Store procedure)
[26:05] : Update an employees

JuanChehin
Автор

This is exactly what I was looking for. Thanks !

davidangelomendoza
Автор

Congrats, amazing tutorial, I imagined Node.js was a monster.

sidneypalmeira
Автор

Thank you so much, I was searching for this from 7-8 hours but nothing found, Now I have done it in one try after this tutorial. Again thanks

chetangupta
Автор

Amazing thank you, I'm used to use mysql for my project and when i saw for node everyone use mongodb, i learn mongodb but I'm really happy to see i tutorial for node and mysql so thank you :)

MeganeFosteryukina
Автор

For anyone looking to copy and paste some SQL statements with some sample data for insert and just wanted to save some typing:
use EmployeeDB;
create table `employee` (
`EmpID` int(11) not null auto_increment,
`Name` varchar(45) default null,
`EmpCode` varchar(45) default null,
`Salary` int(11) default null,
primary key (`EmpID`)
) engine=InnoDB auto_increment=0 default charset=utf8mb4;


select * from employee;


lock tables `employee` write;
insert into `employee` values (1, 'Tommy Eatsheet', 'EMP90', 265400), (2, 'Jess Fukenson', 'EMP92', 50000), (3, 'Bob Knobhead', 'EMP95', 10000), (4, 'Dick knogginson', 'EMP96', 90000);

ChristopherAdams
Автор

Started just in the beginning, I know that this is what I was looking for. Thanks

alexisdauli
Автор

Thanks man! It really helped... I was searching on the internet since a long...finally found something useful...Nice explanation.

SanskritiSharma-mkle
Автор

love your plz make a tutorial on "WPF login(hashed) MVVM and EF7 CRUD application with online mysql database "

amansharma
Автор

Thank you very much for the tutorial. It is the great tutorial I have met so far.

johnnynguyenstudio
Автор

Exactly what I needed, great tutorial!

linden
Автор

Thank you man, a very clear explanation!

EDWRD
Автор

The video is very useful for me, thanks for your excellent job.

charlesliu
Автор

Good video. Just to make life easier at the start when you're creating a package.json file. If you type "npm init --yes", a file will be created without asking you any questions.

tonyross
Автор

Great!!!! easy explaination and simple script usage

dineshvavilapalli
Автор

Thanks you i was looking for this entire YouTube and here i get my solution love from india😇

AjaySharma-pgwc
Автор

thanks man.. what a great video.. easy and sharp... you saved my day. I appreciate your work.

sudhir
Автор

thank you so much, amazing tutorial here!

TheDima
welcome to shbcf.ru