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.
Use sqltomango in your project with:
npm install --save sqltomango
Import the library into your code:
var sqltomango = require('sqltomango');
The sqltomango library is a single function that accepts one argument - a string containing the SQL you wish to convert to a query object:
var 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:
{
"table": "dogs",
"selector": {
"owner": {
"$eq": "glynn"
}
}
}
This works for more complex queries too:
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
}
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