Go to file
Timothy Warren 81c7526bc6 Update docs 2014-10-27 10:35:44 -04:00
docs Update docs 2014-10-27 10:35:44 -04:00
lib Fix joining methods 2014-10-27 10:35:16 -04:00
node_modules Add code coverage modules 2014-10-24 10:28:45 -04:00
tests Fix joining methods 2014-10-27 10:35:16 -04:00
.gitignore A lot more tests 2014-10-24 10:30:54 -04:00
Gruntfile.js A lot more tests 2014-10-24 10:30:54 -04:00
README.md Fix handling of functions in a select clause 2014-10-23 11:59:42 -04:00
package.json A lot more tests 2014-10-24 10:30:54 -04:00

README.md

#Node-query

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

Basic use

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

var connection = ... // Database module connection 

// Three arguments: database type, database connection, database connection library
var query = nodeQuery('mysql', connection, 'mysql2');

query.select('foo')
	.from('bar')
	.where('x', 3)
	.orWhere('y', 2)
	.orderBy('x')
	.limit(2, 3)
	.get(function(err, result) {
		// Database module result handling
	});