named-placeholders

1.1.3 • Public • Published

Flattr this git repo

NPM

CI

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});
mysql.createConnection().query(q[0], q[1]);

credits

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

/named-placeholders/

    Package Sidebar

    Install

    npm i named-placeholders

    Weekly Downloads

    2,339,383

    Version

    1.1.3

    License

    MIT

    Unpacked Size

    7.15 kB

    Total Files

    4

    Last publish

    Collaborators

    • sidorares