New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@aux4/db-sqlite

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aux4/db-sqlite

Database CLI for SQLite

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

@aux4/db-sqlite

JavaScript

Install

$ npm install @aux4/db-sqlite

Execute Query

const Database = require("@aux4/db-sqlite");
const db = new Database({
  database: "test.db"
});

(async () => {
  await db.open();
  const { data } = await db.execute("select * from table where id = :id", { id: 1 });
  console.log(JSON.stringify(data, null, 2));
  await db.close();
})();

Query Stream

const Database = require("@aux4/db-sqlite");
const db = new Database({
  database: "test.db"
});

const stream = await db.stream("select * from table where id = :id", { id: 1 });

stream.on("data", row => {
console.log(JSON.stringify(row, null, 2));
});

stream.on("error", err => {
console.error(err.message);
});

stream.on("close", async () => {
await db.close();
});

Command Line

Install

$ npm install --global @aux4/db
$ npm install --global @aux4/db-sqlite

Usage

Execute Query

$ db execute --database test.db --query "select * from table where id = :id" --id 1

Stream Query

$ db stream --database test.db --query "select * from table where id = :id" --id 1

Using @aux4/config

$ npm install --global @aux4/config

create config.yaml

config:
  dev:
    sqlite:
      database: test.db
$ db execute --configFile config.yaml --config dev/sqlite --query "select * from table where id = :id" --id 1

See Also

  • aux4 website / npm / GitHub
  • @aux4/config npm / GitHub
  • @aux4/db npm / GitHub

Keywords

aux4

FAQs

Package last updated on 10 Nov 2023

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