npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jio-query

v1.0.2

Published

Mysql query builder

Downloads

5

Readme

Install

$ npm install jio-query

Introduction

This is a node.js package that's depend on mysql driver. It is written in JavaScript, does not require compiling, and is 100% free.

If you want to use this package, you have create database connection first.Once database connection is successfull, you get an object of the connection.

Now in this package we need this database connection object.

Here is an example on how to use it:

Database connection

You can create a separate file for this database connection


var mysql = require('mysql');
var con = mysql.createConnection({host:'localhost',user:'root',password:'',database:'db_name'});
con.connect(function(err){
  if(err) throw err;
});

Please remeber,before go through the below code, you need a database connection object firts.


var jq = require('jio-query');
var model = jq.loadMethods(con);  // here 'con' is the object of the database connection above.
var json_str = {
  table   : 'table_name',
  where     : {phone:5555}
};

model.selectData(json_str,function(data){
  //your code here
});

Others Query Methods

To submit the query, please use the following methods.

Insert Query:

var json_str = {
  table   : 'table_name',
  body    : {name:'Rejjak Ali',email:'[email protected]'},
  where     : {id:32}
};
model.addData(json_str,function(data){
  //your code here
});

Delete Query:

var json_str = {
  table   : 'table_name',
  where     : {id:32}
};
model.removeData(json_str,function(data){
  //your code here
});

Update Query:

var json_str = {
  table   : 'table_name',
  body    : {name:'Rejjak Ali',email:'[email protected]'},
  where     : {id:32}
};

model.updateData(json_str,function(data){
  //your code here
});

Custom Query

If you need different requirement that is not implemented on this package, then you can make your own custom query, and pass this query to 'executeQuery' function.Please see the below example.

var sqlQuery = 'select * from node_customer';
model.executeQuery(sqlQuery,function(result){
    //your code here
});

Descriptio for the passing parameters key

When establishing a json string, you have to set the following options:

  • table: pass the table name here
  • body : there are two type of data passing with 'body' key. If you want to retrieve the data from database based on perticular cloumns name, then you have to pass the cloumns name as an array format.like..
body:['name','email','etc..']

On other hand, if you want to 'update' or 'insert' data to the perticular columns with perticular values, then go to the below format,like..

body : {name: 'test',email:'[email protected]',age:54}

For simple where clause

where: {id:45,'age!=':21}

// where id='45' and age!='21'

if you use this type of format, by default this will take for 'AND' operator. If you want 'OR' operator, then simply call like this,

where_or : {id:45,age:21}

// where id='45' or age='21'

IF you want 'IN' keyword with where clause, then pass the value as an array format with perticular key like this..

where : {id:[28,30,31],age:[45,52]}

//where id in('28','30','31') and age in('45','52')

or you can also use like this

where_in    : {id:[28,30,31],age:[45,52]}
//where id in('28','30','31') and age in('45','52') 

where_in_or : {id:[28,30,31],age:[45,52]}
//where id in('28','30','31') or age in('45','52')

Another format of where clause

  • For AND operator
where:{
  and: {
    name : 'test',
    email : '[email protected]'
  }
} 
//name = 'test' and email = '[email protected]'

where:{
  and:{
    'start_date <=' : 'test',
    'end_date =>'   : 'test',
  }
}
//where start_date<='test' and end_date=>'test'
  • For OR operator
where:{
  or: {
    name : 'test',
    email : '[email protected]'
  }
}
//name = 'test' or email = '[email protected]'


where:{
  or:{
    'start_date <=' : 'test',
    'end_date =>'   : 'test',
  }
}
//where start_date<='test' or end_date=>'test'
  • For NOT operator
where:{
  and:{
    not: {
      name : 'test',
      email : '[email protected]'
    }
  }
}
//not name = 'test' and not email = '[email protected]'

where:{
  or:{
    not: {
      name : 'test',
      email : '[email protected]'
    }
  }
}
//not name = 'test' or not email = '[email protected]'
  • Nested clause

where:{
  and:{
    in:{
      id:[28,30,31],
      address:['test','test2','test3']
    },
    and : {
      aname : 'test1',
      bname : 'test2'
    },
    or : {
      cname : 'test3',
      dname : 'test4'
    },
    not : {
      'ename' : 'test5',
      'gname' : 'test6'
    },
  }
}

//where id in('28','30','31') and address in('test','test2','test3') and (aname='test1' and bname='test2') and (cname='test3' or dname='test4) and (not ename='test5' and not gname='test6')
  • LIKE keyword
where:{
  and:{
    like : {
      'ename' : 'test5',
      'gname' : 'test6'
    }
  }
}
//where ename like '%test5%' and gname like '%test6%'
  • order: This is for 'order by' keyword and for this package pass the parameter as an array format like this,
order : ['address']
  • group: This is for 'group by' keyword and for this package pass the parameter as an array format like this,
group : ['name','email']
  • limit : This is for 'LIMIT' clause, the LIMIT clause accepts one or two arguments. The values of both arguments must be zero or positive integers, so you have pass the values as an array format like this,
limit   : [0,10]
  • having : For having clause, you have to pass the data as a json format like this,
having    : {id:30} or 
having_or : {id:30} 
  • like : this is for simple LIKE keyword with OR operator,for AND operator use 'like_and'
like    : {name:'Rejjak Ali',email:'[email protected]',address:'test'}
  • query : This key is return the mysql query string, if you want see what exact query will be execute by your passed parameters. By default query is 'false'. So, for get the result it's not mendatory but if you want see the query string then you need to pass 'true'. If you pass 'true' your query should not be execute and you will get a mysql query string.
var json_str = {
  table   : 'table_name',
  body    : {name:'Rejjak Ali',email:'[email protected]'},
  where     : {id:32},
  query     : true
};
model.updateData(json_str,function(data){
  console.log(data);
});

//Output: update table_name set name='Rejjak Ali',email='[email protected]' where id='32'

Summary of all parameter and condition of the passing object

  • Please go through the below object, you have to used same like this structure based on your requirement.Its not required to pass unnecessary parameters, please pass the parameter based on your requirement.
var nested_clause = {
  and/or : {
        id:30,
        in:{
          roll:[28,30,31],
          address:['test','test2','test3']
        },
        and : {
          test1 : 'test1',
          test2 : 'test2'
        },
        or : {
          test3 : 'test3',
          test4 : 'test4'
        },
        not : {
          'test5' : 'test5',
          'test6' : 'test6'
        },
        like : {
          'test7' : 'test7',
          'test8' : 'test8'
        },
        'fname'    : 'test',
        'lname'    : 'test',
        'start =>' : 'test',
        'end   <=' : 'test',    
  }
};
var params = {
  table   : 'node_customer',
  body    : {name: 'test',email:'[email protected]',age:54},
  // for select statement is used for perticular field,otherwise remove the body key from this object,consequently it will take '*'
  body    : ['name','email','ctc..'],
  // for simple clause
  where     : {id:32,email:'[email protected]'},
  where_or  : {id:32,email:'[email protected]'},
  where_in  : {id:[28,30,31],age:[45,52]},
  where_in_or : {id:[28,30,31],age:[45,52]},
  // for nested clause
  where       : nested_clause,
  order   : ['address'],
  group   : ['name','email'],
  limit   : [0,3],
  having    : {id:30},
  // for simple like operator, otherwise ignore this key and go to nested clause structure with 'where' key and remove 'like' key from this object, because both key will not work simultaneously.
  like    : {"name !":'test',"email":'test',"address":'test'}
  query     : false
};
  • Note: 'where', 'where_or', 'where_in', 'where_in_or' --- You can use only one of these key at a time