Dark Mode
Image

Node.js MySQL Create Database

CREATE DATABASE statement is used to create a database in MySQL.

Example

For creating a database named "javatpoint".

Create a js file named javatpoint.js having the following data in DBexample folder.

 

 

 

 

 

  1. var mysql = require('mysql');  
  2. var con = mysql.createConnection({  
  3. host: "localhost",  
  4. user: "root",  
  5. password: "12345"  
  6. });  
  7. con.connect(function(err) {  
  8. if (err) throw err;  
  9. console.log("Connected!");  
  10. con.query("CREATE DATABASE javatpoint", function (err, result) {  
  11. if (err) throw err;  
  12. console.log("Database created");  
  13. });  
  14. });  

Now open command terminal and run the following command:

  1. Node javatpoint.js  

Node.js create database 1

You can see the database is created.

Verification

To verify if the database is created or not, use the SHOW DATABASES command. Before this, go to initial path by using mysql-p command.

Node.js create database 2

Comment / Reply From