Setting up Google Cloud SQL with Flask
Setting up a database can be very tricky, yet some pretty simple and scalable solutions are available and one such solution is Google Cloud SQL. Cloud SQL is a fully-managed database service that makes it easy to set up, maintain, and administer your relational PostgreSQL and MySQL databases in the cloud. Setting it up can be both tricky and simple, confused? I am here to clear the confusion....
read more
PHP – Mysql GROUP BY HAVING Clause
Problem Statement  :In this article, we are going to perform database operations with GROUP BY HAVING operation through PHP through xampp server....
read more
How to save connection result in a variable in Node.js ?
We are going to use the query function in MySQL library in node.js that will return our output as expected. Using this approach, we can save connection result in a variable in Node.js....
read more
Node.js MySQL Count() Function
We use the COUNT() function in MySQL to count a number of rows in a column satisfying the WHERE clause....
read more
Node.js MySQL Select from Table
Introduction: Learn about Selecting data from MySQL database using node.js. We are going to use standard SELECT FROM SQL Query....
read more
How to Display Recent Posts in DOM using PHP and MySQL ?
Many times, we are very familiar with “latest blogs” or “recent posts” in the websites. So now, here is a simple solution for displaying the recent blogs on the DOM by using PHP and MySQLi....
read more
Difference between LAMP, MAMP and WAMP stack
A Web Stack or Web application stack refers to a compilation of software that is together used to build websites or web applications....
read more
Check if Node.js MySQL Server is Active or not
We will see how to check if the server where our MySQL Database is Hosted is Active or Not....
read more
Difference between LAMP stack and LEMP stack?
Difference between LAMP and LEMP stack :A Web Stack or Web application stack refers to a compilation of software that is together used to build websites or web applications....
read more
How to Implement PostgreSQL Database in Rails Application?
In this article, we are going to look into the implementation of PostgreSQL in a rails application. As we know that database is a very important part of any web application that’s why today modern web applications like Flipkart, Amazon, Netflix all the websites are use database....
read more
Linking of MySql Database in Node.js Backend Side
We can link our MySQL Database in Node.js Backend Side with the mysql module. This module helps in connecting our database with the backend server for storing the data....
read more
Node.js MySQL Update Statement
Node.js is an open-source platform for executing JavaScript code on the server-side. It can be downloaded from here. MySQL is an open-source Relational Database Management System (RDBMS) that uses Structured Query Language (SQL). It is the most popular language for adding, accessing, and managing content in a database. Here we will use the MySQL as a database for our node application. It can be downloaded from here....
read more