🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

node-mysql-query

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-mysql-query

A lightweight Promise-based Query generator to be used with node-mysql-helper.

latest
Source
npmnpm
Version
0.1.4
Version published
Weekly downloads
5
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

#node-mysql-query

A query builder and executer that works in well with node-mysql-helper (optional).

##Features/Goals:

  • Escape everything that can't be verified
  • Only 1 dependancy node-mysql-helper which uses felixge's node-mysql and Q Promises.
  • Full functioning queries (except subqueries)
  • Works well with simplified helper library.
  • Easy to understand syntax
  • Portable query builder, can run on client-side (not that you would want to)

##Need to Know

All fields must be enclosed with backticks like `fieldname` (referring to the base table) OR prefixed with the table name table.id.

If you do not use AS the results will always be returned as tablename.fieldname.

Uppercase Mysql Reserved Words will automatically be recognized. If you want to enforce a string rather than a reserved word, you have two options:

  • Do not have the string all uppercase
  • Wrap the string in quotes (single or double)

##Simple Example


//must configure the MysqlHelper before using node-mysql-query

var MysqlHelper = require('node-mysql-helper');
var mysqlOptions = {
	host: 'bessie.com',
	user: 'username',
	password: 'chicken',
	database: 'dbname'
};
//pool 5 connections
MysqlHelper.connect(mysqlOptions, 5);

//now I can use node-mysql-query

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

  var query=Query('base_table')
    .fields([
      '`id` AS `id`',
      'base_table.id AS `samething`',
      '`firt_name`',
      'table2.fieldname',
      'COUNT(table2.fieldname) AS `grouping`'
    ])
    .join('table2',['table2.idBaseTable','=','base_table.id'],'LEFT JOIN')
    .groupBy('`table2.idBaseTable`')
    .orderBy('`country_name`')
    .limit(10)
    .offset(10); //or go right into .execute()

  query.execute()
    .then(function(results){
      console.log("It's like christmas!", results);
    })
    .catch(function(err){
      console.log(err);
    });


##To do

  • Better documentation
    • functions
    • complex where statements
    • having & grouping
  • A lot more testing
  • Subquery Support

Keywords

node

FAQs

Package last updated on 22 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts