Node.js MySQL Create Database 语句
创建数据库
要在 MySQL 中创建数据库,请使用 "CREATE DATABASE" 语句:
实例
创建名为 "mydb" 的数据库:
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "yourusername",
password: "yourpassword"
});
con.connect(function(err) {
if (err) throw err;
console.log("Connected!");
con.query("CREATE DATABASE mydb", function (err, result) {
if (err) throw err;
console.log("Database
created");
});
});
运行实例 »
将上述代码保存在名为 "demo_create_db.js" 的文件中,然后运行该文件:
运行 "demo_create_db.js"
C:\Users\Your Name>node demo_create_db.js
返回结果:
Connected!
Database created