New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-db

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-db

Single sql、one sql batch params and batch sql batch params execute for nodejs.

latest
Source
npmnpm
Version
1.0.6
Version published
Weekly downloads
3
-40%
Maintainers
1
Weekly downloads
 
Created
Source

cache4js

Single sql、one sql batch params and batch sql batch params execute for nodejs.

##How to use ?
1、install
npm install node-db
2、use

'use strict';
var config = {
    "5miao_game_master": {
        "development": {
            "host": "xxx",
            "port": 3306,
            "database": "xxx",
            "user": "xxx",
            "password": "xxx",
            "connectionLimit": 10
        },
        "test": {
        },
        "production": {
        }
    },
    "test": {
        "development": {
            "host": "xxx",
            "port": 3306,
            "database": "test",
            "user": "xxx",
            "password": "xxx",
            "connectionLimit": 10
        },
        "test": {
        },
        "production": {
        }
    }
};
var db = require('node-db')(config);

// single sql execute
db.query('select * from test_1 limit 1;', function (results) {
    console.log(results);
});

// one sql batch params
db.batch('update test_1 set str = ? where id = ?;', function (results) {
    console.log(results);
}, {db_pool_name: 'test', columns: [['q', 1], ['w', 2]]});

// batch sql batch params
var sqls = ['update test_2 set date = ?;','update test_3 set num = ?;'];
db.batch(sqls, function (results) {
    console.log(results);
}, {db_pool_name: 'test', columns: [['2015-10-30'], [999]]});

For more details,please refer to the code.

Contributing

Contributions welcome

License

The original cache4js was distributed under the Apache 2.0 License, and so is this. I've tried to
keep the original copyright and author credits in place, except in sections that I have rewritten
extensively.

Keywords

db

FAQs

Package last updated on 04 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts