About 1,660,000 results
Open links in new tab
  1. Node.js MySQL Create Database - W3Schools

    Creating a Database. To create a database in MySQL, use the "CREATE DATABASE" statement:

  2. NodeJS MySQL Create Database - GeeksforGeeks

    Feb 9, 2021 · The MySQL CREATE DATABASE statement is used to create a new database. It allows you to specify the database name and optional settings, such as character set and collation, ensuring the database is ready for storing and managing data.

  3. MySQL Create Database in Node.js - Step-by-Step Guide

    Jan 22, 2025 · Creating a Database in Node.js. You can create a MySQL database using the CREATE DATABASE SQL statement. Example: Create a New Database const mysql = require('mysql'); // Create a connection to MySQL server const connection = mysql.createConnection({host: 'localhost', user: 'root', password: '',}); // Connect to the MySQL server connection ...

  4. Creating MySQL Databases Programmatically with Node.js: A …

    Learn how to create new MySQL databases using Node.js and the MySQL connector library. This tutorial provides a clear, step-by-step process with code examples, demonstrating how to connect to your MySQL server, execute the `CREATE DATABASE` statement, and verify the creation of your new database.

  5. How to create a database in MySql with Node.js | Rootstack

    Aug 30, 2022 · We are going to explain how to create and use a MySQL database in Node.js, with the help of the Create Database query. This will be very useful for Node.js developers. Syntax: Create Database Query: CREATE DATABASE gfg_db; Use Database Query: USE gfg_db. Modules: Node.js, ExpressJs, My SQL. Install the modules.

  6. Creating a Database in MySQL Node Js : Step-by-Step Guide

    Oct 20, 2024 · MySQL Create Database Node Js -Learn how to create a database in MySQL using command line or MySQL Workbench.

  7. Creating a database from scratch with Node.js - DEV Community

    Dec 23, 2020 · Hello, this is the repository for my database project, I am trying to learn how to create a database from scratch using Node.js. My objective is to understand a little better how databases work internally

  8. Beginner's guide to using MySQL database in a Node.js app

    Sep 13, 2020 · MySQL is one of the most popular SQL databases. This blog will explore how to use MySQL database with Node.js server. By the end of this blog, you will be able to: create a MySQL database; connect the database to Node.js server ; configure the server to create(C), retrieve(R), update(U), and delete(D) data in the database

  9. How To Create Database Using Node.js - SourceCodester

    Jan 7, 2019 · Learn on how to create Database Using Node.js. A simple program that let you connect to MySQL database. This could be use when you want to use Node.js as your database provider.

  10. How to create a database in MYSQL using Nodejs

    Apr 15, 2022 · Node.js can be used in database applications. And one of the most popular databases is MySQL. To enable the code examples that will be explained in this tutorial, you must have MYSQL installed on your computer.

  11. Some results have been removed
Refresh