Go to file
Timothy Warren 6542c8f674 A bunch of random progress 2014-10-20 16:56:45 -04:00
docs A bunch of random progress 2014-10-20 16:56:45 -04:00
lib A bunch of random progress 2014-10-20 16:56:45 -04:00
node_modules A bunch of random progress 2014-10-20 16:56:45 -04:00
tests A bunch of random progress 2014-10-20 16:56:45 -04:00
Gruntfile.js A bunch of random progress 2014-10-20 16:56:45 -04:00
README.md A bunch of random progress 2014-10-20 16:56:45 -04:00
config.json A bunch of random progress 2014-10-20 16:56:45 -04:00
package.json A bunch of random progress 2014-10-20 16:56:45 -04:00

README.md

#Node-query

A node query builder for various SQL databases, based on CodeIgniter's query builder.

Probable use

var query = require('node-query');

var res = query
	.select('foo')
	.from('bar')
	.where('x', 3)
	.orWhere('y', 2)
	.orderBy('x')
	.limit(2, 3)
	.get();