You did it! Thank you for sharing this tutorial, really appreciate it. You even went as far as deployment.
@OpenJavaScript Жыл бұрын
You're welcome! I did have it in mind to post a video on using MySQL in Node.js as I haven't covered working with databases on the channel yet. But after your last message, decided to bring it forward. Thank you for reaching out with the suggestion. If you have any others in the future, let me know. Can't promise I'll be able to make a video on the exact topic but would take it into account :)
@stacknewbie3815 Жыл бұрын
@@OpenJavaScript Ok, I'll share any ideas that come to mind
@OpenJavaScript Жыл бұрын
@@stacknewbie3815 Great :)
@EricEGunes Жыл бұрын
Simple and smooth… love it , thanks much 😅
@OpenJavaScript Жыл бұрын
Glad you liked it, thanks for reaching out with this feedback 🙂
@k4k_0106 ай бұрын
Thanks for the video
@dondalover1024 күн бұрын
Not sure if this is a dumb question i'm a beginner, but how do I code and automate requests? I see you use Thunder Client, can I code it to request it automatically without me having to manage what type of request and sending it myself?
@msagars Жыл бұрын
How would you run a backend built using Express,js and access MySQL database on a shared hosting service via cPanel/DirectAdmin?
@scotly_emi Жыл бұрын
please how can I send 😔 files 😫 to mysql database using multer
@OpenJavaScript Жыл бұрын
Hi again, think we exchanged some messages before? Regarding your question: Multer is used to get file data in Node.js in the first place in response a request with form/FormData incoming from the frontend. This is a preliminary step to posting to a database. You can access the file or files posted on the request object in Node.js as a single file or array. Here's a tutorial on this first part: kzbin.info/www/bejne/iovZfn-Ne7uJnqc Then, once you have the file or files in Node.js, you can initate the request to the MySQL database like in this video, passing in the file data that came through using Multer. Hope this helps! Let me know in case you have any further questions.
@scotly_emi Жыл бұрын
@@OpenJavaScript ya thanks 🙏 I can upload to MySQL but the issue is when I'm trying to upload another post let's say a new blog post all other picture with the same name in the database will take the new picture am uploading in the new post