Socket
Socket
Sign inDemoInstall

database-builder

Package Overview
Dependencies
7
Maintainers
2
Versions
154
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    database-builder

Library to assist in creating and maintaining SQL commands.


Version published
Weekly downloads
36
decreased by-72.31%
Maintainers
2
Install size
10.7 MB
Created
Weekly downloads
 

Readme

Source

npm version contributions welcome

database-builder

Library to assist in creating and maintaining SQL commands.

look at the test for more details of use (./src/test/)

Getting Started

Step 1: Install npm module

npm install --save database-builder 

This will install the current stable version of database-builder in your node_modules directory and save the entry in package.json.

Step 2: Usage Typescript

Demo

import { Query } from 'database-builder';
import { TestClazz, TestClazzRef } from './models';

let querySimple = new Query(TestClazz);
console.log(querySimple.compile());
/**
 * {
 *  params: [],
 *  query: "SELECT tes.* FROM TestClazz AS tes"
 * }
 */

const queryWhere = new Query(TestClazz);
queryWhere.where(where => {
  where.contains(x => x.description, "abc");
  where.greatValue(x => x.id, 1);
});
console.log(queryWhere.compile());
/**
 * {
 *  params: ["%abc%", 1],
 *  query: "SELECT tes.* FROM TestClazz AS tes WHERE tes.description LIKE ? AND tes.id > ?"
 * }
 */

const queryProjections = new Query(TestClazz);
queryProjections.projection(projection => {
  projection.add(x => x.description);
  projection.sum(x => x.id);
  projection.max(x => x.referenceTest.id);
  projection.count(x => x.id, "countId");
});
console.log(queryProjections.compile());
/**
 * {
 *  params: [],
 *  query: "SELECT tes.description AS description, SUM(tes.id) AS id, MAX(tes.referenceTest_id) AS referenceTest_id, COUNT(tes.id) AS countId FROM TestClazz AS tes"
 * }
 */

const queryOrderBy = new Query(TestClazz);
queryOrderBy.orderBy(x => x.id);
console.log(queryOrderBy.compile());
/**
 * {
 *  params: [],
 *  query: "SELECT tes.* FROM TestClazz AS tes ORDER BY tes.id ASC"
 * }
 */

const queryGroupBy = new Query(TestClazz);
queryGroupBy.groupBy(x => x.id, (having, projection) => {
    having.greatValue(projection.count(x => x.id), 10);
  });
console.log(queryGroupBy.compile());
/**
 * {
 *  params: [10],
 *  query: "SELECT tes.* FROM TestClazz AS tes GROUP BY tes.id HAVING COUNT(tes.id) > ?"
 * }
 */

const queryLimitOffset = new Query(TestClazz);
queryLimitOffset.limit(10, 5);
console.log(queryLimitOffset.compile());
/**
 * {
 *  params: [10, 5],
 *  query: "SELECT tes.* FROM TestClazz AS tes LIMIT ? OFFSET ?"
 * }
 */

models.ts

export class TestClazz {

    public description: string = "";
    public referenceTest: TestClazzRef = new TestClazzRef();
    public disabled: boolean = false;
}

export class TestClazzRef{

    public id: number = 0;
    public description: string = "";
}

Usage Angular 2+

Demo

import { Component } from '@angular/core';
import { Query } from 'database-builder';
import { TestClazz } from './models';

@Component({
    selector: 'app-component',
    templateUrl: 'app.html'
})
export class AppComponent {
    
    ngOnInit(){
        let query = new Query(TestClazz);
        query.where(where => where.between(x => x.id, 1, 20));
        const result = query.compile();
        console.log(result);
        /**
         * result:
         * {
         *  params: [1,20],
         *  query: "SELECT tes.* FROM TestClazz AS tes WHERE tes.id BETWEEN ? AND ?"
         * }
         */
    }
}

Usage Ionic 2+

Demo

For Ionic 2+ use ionic-database-builder.

npm install --save ionic-database-builder

Contribution Welcome!

The project is continously evolving with every new release. Give it a star, if you like it. For contribution, setup the development environment as follows:

  1. clone and setup the project dependencies
$> git clone https://github.com/fernandocode/database-builder.git

$> npm install
  1. Use following commands based on what you'd like to do:
$> npm run test              # runs test suite once and exit.
  1. Have you found a bug, or want to develop a new feature?

3.1. Look for Pull Requests if something is not already implemented;

3.2. Check if there is no Issue related to this? (If there is not one, so that the use case can be checked);

3.3. Make the necessary changes, add tests to what has been implemented, run the tests and submit a Pull Request with the changes (Comment what was done, and relate the Issue). As soon as possible it will be verified, and if approved it will be available in the next release of the library.

If you face any problem, then raise an issue here.

Keywords

FAQs

Last updated on 03 Feb 2023

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