chensenlai 10988628a0 语音房项目初始化 hace 5 años
..
node_modules 10988628a0 语音房项目初始化 hace 5 años
test 10988628a0 语音房项目初始化 hace 5 años
.npmignore 10988628a0 语音房项目初始化 hace 5 años
.travis.yml 10988628a0 语音房项目初始化 hace 5 años
LICENSE 10988628a0 语音房项目初始化 hace 5 años
README.md 10988628a0 语音房项目初始化 hace 5 años
index.js 10988628a0 语音房项目初始化 hace 5 años
package.json 10988628a0 语音房项目初始化 hace 5 años

README.md

Flattr this git repo

NPM

Build Status

named-placeholders

compiles "select foo where foo.id = :bar and foo.baz < :baz" into "select foo where foo.id = ? and foo.baz < ?" + ["bar", "baz"]

usage

npm install named-placeholders

see this mysql2 discussion

var mysql = require('mysql');
var toUnnamed = require('named-placeholders')();

var q = toUnnamed('select 1+:test', { test: 123});
mysl.createConnection().query(q[0], q[1]);

credits

parser is based on @mscdex code of his excellent node-mariasql library