Showing entries 1 to 8
Displaying posts with tag: Node Tutorials (reset)
Node.js MySQL Insert Record

We already have a tutorial on how to connect to the MySQL database using Node.js. Well, you can read it if you want to know, but it only allows you to interact with the database, what if you want to insert some new records directly from Node.js? You can also easily do this by executing […]

NodeJS MySQL Select Unique

NodeJS is an open-source, cross-platform runtime environment that uses JavaScript for creating fast, data-intensive, and secure server-side applications.  These applications require some ways to store data in order to use them again. NodeJS supports all kinds of Databases, relational, and non-relational out of which MySQL can be the best choice. MySQL is a relational database management system that stores data in one or more tables of rows and columns. It can be used in NodeJS to store large amounts of data and retrieve data quickly due to its simple structure using SQL. SQL stands for structured query languages which we…

Node.js and MySQL Connection Pool Example

Node and MySQL are a go-to combination for a quick prototype build and in various cases for production build as well. In this tutorial, we will learn how to connect Node with MySQL and how to pool the connections for better performance and optimization of resources. You need Node and MySQL installed in your system before proceeding towards the tutorial. Click here to read a comprehensive guide on the installation and setup of Node.js. And if you want to know how to run and connect to a MySQL server, check out: NodeJS Create MySQL Connection. Node MySQL Connection To begin…

NodeJS MySQL Drop Table

MySQL stores data in the form of one or many tables and sometimes these tables become useless but take up some space, to free up the space and get rid of these tables, we can delete them by simply dropping them from the MySQL database. Drop a table means deleting the table permanently from the …

NodeJS MySQL Drop Table Read More »

NodeJS MySQL Select Record

MySQL is a relational database management system that stores data in one or more tables of rows and columns and uses structured query languages to perform different operations on them. MySQL can be used in NodeJS to store large amounts of data, and we can retrieve data quickly due to its simple structure using SQL …

NodeJS MySQL Select Record Read More »

NodeJS MySQL Create Table

Creating a table is extremely important for storing data in multiple rows and columns in a MySQL database. MySQL stores data in the form of a table which can be created using SQL queries, SQL stands for Structured Query Language and can be used to perform different operations on MySQL database. The below query is …

NodeJS MySQL Create Table Read More »

NodeJS MySQL Create Database

MySQL Database is used to store the collection of records in the form of tables consisting of rows and columns. The Database in MySQL can be handled using SQL queries. SQL stands for Structured Query Language, which can perform many operations such as create, select, update, delete, etc on the database. For creating a database …

NodeJS MySQL Create Database Read More »

NodeJS MySQL Create Connection

MySQL is a relational database management system that stores data in one or more tables of columns and uses structured query languages to perform different operations on them. For interacting with MySQL Database it is required to run a MySQL server in the background. You can install MySQL from https://www.mysql.com/downloads/.  Installation and Setup of MySQL …

NodeJS MySQL Create Connection Read More »

Showing entries 1 to 8