0.0.2-alpha • Published 13 years ago

where-parser v0.0.2-alpha

Weekly downloads
5
License
MIT
Repository
-
Last release
13 years ago

where-parser.js

An NPM for parsing SQL where clauses

Usage

First include the module:

var WhereParser = require('./where-parser');

then, instantiate the object:

var parser = new WhereParser();

now you can issue queries:

parse.parse(myWhereClause)

and you'll get back a tree of objects where each node is one of:

{
    type: 'expression',
    key: '<key>',
    operator: <operator>,
    value: <value>
}    


{
    type: 'conjunction',
    value: <value>
}    

[]

Testing

Run the tests at the project root with:

mocha

Enjoy,

-Abbey Hawk Sparrow

1.0.0

3 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.2-alpha

13 years ago

0.0.1-alpha

13 years ago