This is a small mysql query builder using the nodejs mysql driver by felixge.

Sample Usage:

```js
var query_builder = require('query_builder');

var dbconn_default = {
host : 'host',
user : 'user',
pass : 'password',
dbase : 'database_schema'
};

var qb = new query_builder( dbconn_default );

var select_details = {
table : 'table_name',
fields : [ 'field1', 'field2', ... ],
conditions : {
field1 : 'value1',
field2 : 'value2'
}
};

qb.select( select_details, function( err, rows ){
if( err )
console.log( err );
else
console.log( rows );
});
```

By this, we can generate a query something like this:

```sql
SELECT `field1`, `field2` FROM `table_name` WHERE `field1` = 'value1' AND `field2` = 'value2'
```

For more information, visit the github project.
https://github.com/sarahseguenza/nodejs-mysql-query-builder

Project Samples

Project Activity

See All Activity >

License

MIT License

Follow Nodejs MySQL Query Builder

Nodejs MySQL Query Builder Web Site

Other Useful Business Software
Our Free Plans just got better! | Auth0 Icon
Our Free Plans just got better! | Auth0

With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Try free now
Rate This Project
Login To Rate This Project

User Reviews

Be the first to post a review of Nodejs MySQL Query Builder!

Additional Project Details

Languages

English

Intended Audience

Information Technology, Developers

Programming Language

JavaScript

Database Environment

Other API

Related Categories

JavaScript Database Software, JavaScript Front-Ends, JavaScript Database Engines Servers

Registered

2015-05-05