Node.js Tutorial
- Node.js Tutorial
- Install Node.js on Windows
- Install Node.js on Linux/Ubuntu/CentOS
- Node.js First Example
- Node.js Console
- Node.js REPL
- Node.js Package Manager
- Node.js Command Line Options
- Node.js Global Objects
- Node.js OS
- Node.js Timer
- Node.js Errors
- Node.js DNS
- Node.js Net
- Node.js Crypto
- Node.js TLS/SSL
- Node.js Debugger
- Node.js Process
- Node.js Child Process
- Node.js Buffers
- Node.js Streams
- Node.js File System (FS)
- Node.js Path
- Node.js StringDecoder
- Node.js Query String
- Node.js ZLIB
- Node.js Assertion Testing
- Node.js V8
- Node.js Callbacks
- Node.js Events
- Node.js Punycode
- Node.js TTY
- Node.js Web Module
- NestJS
Node.js MySQL
Node.js MongoDB
Nodejs Difference
Node.js MCQ
Node.js Express
Nodejs Interview Questions
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.
- var mysql = require('mysql');
- var con = mysql.createConnection({
- host: "localhost",
- user: "root",
- password: "12345"
- });
- con.connect(function(err) {
- if (err) throw err;
- console.log("Connected!");
- con.query("CREATE DATABASE javatpoint", function (err, result) {
- if (err) throw err;
- console.log("Database created");
- });
- });
Now open command terminal and run the following command:
- Node javatpoint.js
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.