nodejs+express+mssqlパッケージデータ操作
10037 ワード
オンラインでいくつかのnodejs接続sqlserverの関連している教程があることを見て、しかしとても少なくて、その上多くは間違いがあって、特にデータベースの語句を操作して、ここで私は1回整理して、1つの完備しているnodejs舞台裏を構築して、そしてsqlserverの操作をカプセル化します.
nodejsのインストールとexpressのインストールはここで多くなくて、ネット上ですべて教程があって、できないネット上の検索はすべてあります.
それからmssqlをインストールして、terminalの中であなたのプロジェクトのフォルダに入って、命令を入力します:
この時にdb.jsを新設し、データの封入作業を開始します.私は一般的にroutes、viewと同じレベルのフォルダを新しく作って、いくつかの公共のjsを放して、たとえば改ページ関数はPage.jsを分けて包装します.データベースのパッケージ化を開始します.
先にコードを入れる:
nodejsのインストールとexpressのインストールはここで多くなくて、ネット上ですべて教程があって、できないネット上の検索はすべてあります.
それからmssqlをインストールして、terminalの中であなたのプロジェクトのフォルダに入って、命令を入力します:
npm install mssql
、しばらく待って、すぐインストールが完成しました.この時にdb.jsを新設し、データの封入作業を開始します.私は一般的にroutes、viewと同じレベルのフォルダを新しく作って、いくつかの公共のjsを放して、たとえば改ページ関数はPage.jsを分けて包装します.データベースのパッケージ化を開始します.
先にコードを入れる:
/**
*sqlserver Model
**/
const mssql = require("mssql");
const util = require("util");
const conf = require("../config.js");
let restoreDefaults = function () {
conf;
};
const con = new mssql.ConnectionPool(conf);
con.on('error', err => {
if (err) {
throw err;
}
});
con.connect(err => {
if (err) {
console.error(err);
}
});
let querySql = async function (sql, params, callBack) {
try{
let ps = new mssql.PreparedStatement(con);
if (params != "") {
for (var index in params) {
if (typeof params[index] == "number") {
ps.input(index, mssql.Int);
} else if (typeof params[index] == "string") {
ps.input(index, mssql.NVarChar);
}
}
}
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute(params, (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
var select = async function (tableName, topNumber, whereSql, params, orderSql, callBack) {
try{
var ps = new mssql.PreparedStatement(con);
var sql = "select * from " + tableName + " ";
if (topNumber != "") {
sql = "select top(" + topNumber + ") * from " + tableName + " ";
}
sql += whereSql + " ";
if (params != "") {
for (var index in params) {
if (typeof params[index] == "number") {
ps.input(index, mssql.Int);
} else if (typeof params[index] == "string") {
ps.input(index, mssql.NVarChar);
}
}
}
sql += orderSql;
console.log(sql);
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute(params, (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
var selectAll = async function (tableName, callBack) {
try{
var ps = new mssql.PreparedStatement(con);
var sql = "select * from " + tableName + " ";
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute("", (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
var add = async function (addObj, tableName, callBack) {
try{
var ps = new mssql.PreparedStatement(con);
var sql = "insert into " + tableName + "(";
if (addObj != "") {
for (var index in addObj) {
if (typeof addObj[index] == "number") {
ps.input(index, mssql.Int);
} else if (typeof addObj[index] == "string") {
ps.input(index, mssql.NVarChar);
}
sql += index + ",";
}
sql = sql.substring(0, sql.length - 1) + ") values(";
for (var index in addObj) {
if (typeof addObj[index] == "number") {
sql += addObj[index] + ",";
} else if (typeof addObj[index] == "string") {
sql += "'" + addObj[index] + "'" + ",";
}
}
}
sql = sql.substring(0, sql.length - 1) + ")";
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute(addObj, (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
var update = async function (updateObj, whereObj, tableName, callBack) {
try{
var ps = new mssql.PreparedStatement(con);
var sql = "update " + tableName + " set ";
if (updateObj != "") {
for (var index in updateObj) {
if (typeof updateObj[index] == "number") {
ps.input(index, mssql.Int);
sql += index + "=" + updateObj[index] + ",";
} else if (typeof updateObj[index] == "string") {
ps.input(index, mssql.NVarChar);
sql += index + "=" + "'" + updateObj[index] + "'" + ",";
}
}
}
sql = sql.substring(0, sql.length - 1) + " where ";
if (whereObj != "") {
for (var index in whereObj) {
if (typeof whereObj[index] == "number") {
ps.input(index, mssql.Int);
sql += index + "=" + whereObj[index] + " and ";
} else if (typeof whereObj[index] == "string") {
ps.input(index, mssql.NVarChar);
sql += index + "=" + "'" + whereObj[index] + "'" + " and ";
}
}
}
sql = sql.substring(0, sql.length - 5);
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute(updateObj, (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
var del = async function (whereSql, params, tableName, callBack) {
try{
var ps = new mssql.PreparedStatement(con);
var sql = "delete from " + tableName + " ";
if (params != "") {
for (var index in params) {
if (typeof params[index] == "number") {
ps.input(index, mssql.Int);
} else if (typeof params[index] == "string") {
ps.input(index, mssql.NVarChar);
}
}
}
sql += whereSql;
ps.prepare(sql, err => {
if (err)
console.log(err);
ps.execute(params, (err, recordset) => {
callBack(err, recordset);
ps.unprepare(err => {
if (err)
console.log(err);
});
});
});
}catch(err){
console.error('SQL error', err);
}
restoreDefaults();
};
exports.config = conf;
exports.del = del;
exports.select = select;
exports.update = update;
exports.querySql = querySql;
exports.selectAll = selectAll;
exports.restoreDefaults = restoreDefaults;
exports.add = add;
ここでもう一つのconfig.jsが必要です.let app = {
user: 'sa',
password: '',
server: 'localhost',
database: 'database',
port: 1433,
options: {
encrypt: true // Use this if you're on Windows Azure
},
pool: {
min: 0,
max: 10,
idleTimeoutMillis: 3000
}
};
module.exports = app;
これでパッケージが完成しました.ネット上の多くの教程は全部使うmssql.Connection()
です.しかし、一部のエラーが報告されてこの関数がないことが分かります.mssql.connect()
に変更されたものもあります.いいですが、2回目にデータベースを使うと、ほぼあなたのデータベースが接続されています.mssql.ConnectionPool()
を使うとこれらの問題はなく、以下はindex.jsを例にして使用されます.var express = require('express');
var db = require('../utils/db.js');
var moment = require('moment');
var router = express.Router();
/* GET home page. */
router.get('/', function (req, res, next) {
db.selectAll('news', function (err, result) {// news
res.render('newsList', {results:records.recordset, moment:moment});
});
});
router.get('/delete/:id', function (req, res, next) {// id news
var id = req.params.id;
db.del("where id = @id", {id:id}, "news", function(err, result){
res.redirect('back');//
});
});
router.post('/update/:id', function (req, res, next) {// id news
var id = req.params.id;
var content = req.body.content;
db.update({content:content}, {id:id}, "news", function(err, result){
res.redirect('back');
});
});
module.exports = router;
これでnodejsとmssqlの使用が実現しました.