Socket
Book a DemoInstallSign in
Socket

qbql

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qbql

QuickBase Query Language

1.0.5
latest
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

QuickBase Query Language (qbql)

QuickBase API using standard SQL syntax

Getting Started

Install from npm:

$ npm i qbql

Or get the source code here:

$ git remote add origin https://davidjbarnes@bitbucket.org/davidjbarnes/qbql.git

Usage

import QBQL from 'qbql';

qbql = new QBQL({
    domain: <DOMAIN>,
    database: <DATABASE>,
    username: <USERNAME>,
    password: <PASSWORD>,
    onReady: (response) => {
        console.log(response);
    },
    onError: (error) => {
        console.log(error);
    }
});

Methods

Select

qbql.query("select name from user").then((response) => {
    console.log(response);
});

Where

qbql.query("select name from user where name = 'David'").then((response) => {
    console.log(response);
});

Operators

Valid where operators:

  • '=' Is equal to a specific value
  • '!=' Is not equal to a specific value
  • '<' Is less than a specific value
  • '<=' Is less than or equal to a specific value
  • '>' Is greater than a specific value
  • '>=' Is greater than or equal to a specific value

Work in Progress

  • Insert (standard)
  • Bulk insert
  • Stored Procs
  • Update
  • Delete
  • Join
  • Aggregate functions

Contributing

Email me: NullableInt@gmail.com

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Keywords

quickbase

FAQs

Package last updated on 08 Jan 2019

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.