1.0.3 • Published 4 years ago

bob_sqlite3 v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

Bob's Sqlite3 Class

For personal use.

Import

npm i bob_sqlite3
const SQLite = require("bob_sqlite3");

Syntax

Constructor

const database = new SQLite("URL To SQLite Database");

Methods

async function methods() {
    await database.insert("SQL QUERY");
    //Returns "Completed" when finished, otherwise returns the error as a String
    await database.selectMultiple("SQL QUERY");
    //Returns an Array of Objects, otherwise returns the error as a String
    await database.select("SQL QUERY");
    //Returns an Object, otherwise returns the error as a String
}
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago