0.3.0
A simple modular, scalable query builder that let you toggle strategies to easily, used and created by Açaí Framework
Repository
Current version released
4 years ago
Dependencies
deno.land/x
Versions
Açaí’s Framework query builder
A simple modular, scalable query builder that let you toggle strategies to easily, used and created by Açaí Framework.
Supports
- MySQL
- PostgreSQL
- mongo
- sqlite
Installation
npm
npm install --save @acai/query
yarn
yarn add @acai/query
Usage
Setup
The first thing you are going to need is setup your query, you can easily define your default query or just setup one as follows:
import query, { setDefault, addQuery } from "query/mod.ts";
// Add query of sql type
await addQuery("secondary", "sql", { /* sql config */ });
const sqlquery = query("secondary");
// or setup a default query so you can easily import
await setDefaultQuery("pg", {
/* Optional sql query settings, if you want to pass any */
});
// now every time you call query without arguments, it will look for the default query
const pgquery = query(); // <-- this is a postgreSQL query builder
Querying
You can easily search select using the query
import query from "query/mod.ts";
const results = await query().table("people").where("id", 5).get(["name", "age"]);
Our query builder smartlys build your raw string query so you don’t have to worry about the details, for example:
await query().table("people").where("id", 5).where("name", "Robert").get();
// will output:
// SELECT FROM people WHERE id = 5 AND name = Robert
await query().table("people").where("id", 2).orWhere("name", "Robert").get();
// will output:
// SELECT FROM people WHERE id = 5 OR name = Robert
Inserting
import query from "query/mod.ts";
await query().table("people").insert({
name: "John",
surname: "Doe",
age: 32,
});
Updating
import query from "query/mod.ts";
await query().table("people").where("id", 5).update({
name: "John"
});
Deleting
import query from "query/mod.ts";
await query().table("people").where("id", 5).delete();