Emmanuil c2e0590820 31.07.2020 | před 4 roky | |
---|---|---|
.. | ||
node_modules | před 4 roky | |
Changelog.md | před 4 roky | |
LICENSE | před 4 roky | |
README.md | před 4 roky | |
index.js | před 4 roky | |
package.json | před 4 roky |
compiles "select foo where foo.id = :bar and foo.baz < :baz" into "select foo where foo.id = ? and foo.baz < ?" + ["bar", "baz"]
npm install named-placeholders
var mysql = require('mysql');
var toUnnamed = require('named-placeholders')();
var q = toUnnamed('select 1+:test', { test: 123});
mysql.createConnection().query(q[0], q[1]);
parser is based on @mscdex code of his excellent node-mariasql library