nodejs连接MySQL数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs连接MySQL数据库相关的知识,希望对你有一定的参考价值。
在github上搜索orm2 https://github.com/dresende/node-orm2;
在项目文件夹使用npm install orm下载下来,然后书写配置文件
var orm = require("orm"); orm.connect("mysql://username:[email protected]/database", function (err, db) { if (err) throw err; var Person = db.define("person", { name : String, surname : String, age : Number, // FLOAT male : Boolean, continent : [ "Europe", "America", "Asia", "Africa", "Australia", "Antartica" ], // ENUM type photo : Buffer, // BLOB/BINARY data : Object // JSON encoded }, { methods: { fullName: function () { return this.name + ‘ ‘ + this.surname; } }, validations: { age: orm.enforce.ranges.number(18, undefined, "under-age") } }); // add the table to the database db.sync(function(err) { if (err) throw err; // add a row to the person table Person.create({ id: 1, name: "John", surname: "Doe", age: 27 }, function(err) { if (err) throw err; // query the person table by surname Person.find({ surname: "Doe" }, function (err, people) { // SQL: "SELECT * FROM person WHERE surname = ‘Doe‘" if (err) throw err; console.log("People found: %d", people.length); console.log("First person: %s, age %d", people[0].fullName(), people[0].age); people[0].age = 16; people[0].save(function (err) { // err.msg = "under-age"; }); }); }); }); });
具体的配置查看orm在github上的说明文档
以上是关于nodejs连接MySQL数据库的主要内容,如果未能解决你的问题,请参考以下文章
nodejs连接mysql,然后在http网页上显示数据库里的数据?