Socket
Socket
Sign inDemoInstall

just-sql-query-builder

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    just-sql-query-builder

Simple SQL query builder


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
142 kB
Created
Weekly downloads
 

Readme

Source

Just a simple SQL query builder

Simple library to help with creating reusable SQL queries independent from DB.

  • helps create reusable SQL queries
  • extensible
  • SQL database agnostic

Usage example

SELECT

const jsqb = require('just-sql-query-builder');

const qb = new jsqb.SelectQueryBuilder('test_table');
qb.andCondition('field1 = ?', [10]);
qb.groupResultsBy('group_field');
qb.havingResults('field1 = "foo"');
qb.orderResultsBy('order_field ASC');
qb.setLimit(10);
qb.setOffset(1);

console.log('Query: ' + qb.buildAndGetQuery());
console.log('Params: ' + qb.getConditionParams());

Result "Query: "

SELECT * FROM test_table WHERE field1 = ? GROUP BY group_field HAVING field1 = "foo" ORDER BY order_field ASC LIMIT 10 OFFSET 1

Result "Params: "

[10]

UPDATE

const jsqb = require('just-sql-query-builder');

const qb = new jsqb.UpdateQueryBuilder('test_table');
qb.addValue('field1', 'foo');
qb.andCondition('field3 = ?', [30]);
qb.setLimit(10);

console.log('Query: ' + qb.buildAndGetQuery());
console.log('Params: ' + qb.getConditionParams());

Result "Query: "

UPDATE test_table SET field1 = ? WHERE field3 = ? LIMIT 10

Result "Params: "

['foo', 30]

DELETE

const jsqb = require('just-sql-query-builder');

const qb = new jsqb.DeleteQueryBuilder('test_table');
qb.andCondition('field1 = ?', ['foo']);

console.log('Query: ' + qb.buildAndGetQuery());
console.log('Params: ' + qb.getConditionParams());

Result "Query: "

DELETE FROM test_table WHERE field1 = ?

Result "Params: "

['foo']

INSERT

const jsqb = require('just-sql-query-builder');

const qb = new jsqb.InsertQueryBuilder('test_table', ['field1', 'field2']);

console.log('Query: ' + qb.buildAndGetQuery());

Result "Query: "

INSERT INTO test_table (field1,field2) VALUES (?,?)

Keywords

FAQs

Last updated on 31 Jul 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc