Nupur Khare

Insert MySQL Data Using Nodejs

In this tutorial, we will learn how to insert rows in a table from a Nodejs application in a MySQL database server. Inserting single row using Nodejs First, we will learn how to insert a single row in the table named info of the database app. The code below is written in the javascript file […]

Insert MySQL Data Using Nodejs Read More »

Create MySQL tables using Nodejs

In this tutorial, we will learn how to create tables in the MySQL database server from the Nodejs application. Connecting to MySQL database server First of all, we connect our Nodejs application to the MySQL database server. For that, the code given below will set up the connection. Here we have first connected to the

Create MySQL tables using Nodejs Read More »