UNPKG

sqltomango

Version:

Converts SQL statements into CouchDB Mango (Cloudant Query) JSON queries

94 lines (76 loc) 1.87 kB
# sqltomango A simple Node.js library that converts Structured Query Language (SQL) into CouchDB Mango / Cloudant Query JSON objects. Mango is the code name for the query language used in Apache CouchDB and IBM Cloudant. It uses JSON to represent queries. This tool converts SQL strings into Mango objects, to allow users to interact with CouchDB/Cloudant database with SQL queries. ## Installation Use *sqltomango* in your project with: ```sh npm install --save sqltomango ``` Import the library into your code: ```js import * as sqltomango from './index.js' ``` ## Usage The *sqltomango* library is a single function that accepts one argument - a string containing the SQL you wish to convert to a query object: ```js const q = sqltomango.parse("SELECT * FROM dogs WHERE owner = 'glynn'") ``` It returns an object which can be used to to query a CouchDB or Cloudant database: ```js { "table": "dogs", "selector": { "owner": { "$eq": "glynn" } } } ``` This works for more complex queries too: ```js var q = sqltomango.parse("SELECT _id, age, breed FROM dogs WHERE owner = 'glynn' OR (name='towser' AND colour='white') ORDER BY age DESC LIMIT 500,1500") // produces... { "table": "dogs", "fields": [ "_id", "age", "breed" ], "selector": { "$or": [ { "owner": { "$eq": "glynn" } }, { "$and": [ { "name": { "$eq": "towser" } }, { "colour": { "$eq": "white" } } ] } ] }, "sort": [ { "age": "desc" } ], "limit": 1500, "skip": 500 } ``` ## Errors An exception is thrown if the SQL does not parse or contains SQL features not supported by Mango including: - GROUP BY - SUM/COUNT/AVG/DISTINCT - UNION - JOIN