dbdts.db
TypeScript icon, indicating that this package has built-in type declarations

4.4.1 • Public • Published

dbdts.db

import { Column, ColumnDataType, Database, Table } from "..";

const db = new Database()

const table = new Table("users")
    .addColumns(
        [
            new Column()
            .setName('id')
            .setPrimary(true)
            .setType(ColumnDataType.TEXT),
            new Column()
            .setName('swords')
            .setType(ColumnDataType.INTEGER)
            .setDefault(0),
            new Column()
            .setName('json')
            .setType(ColumnDataType.JSON)
        ]
    )

db.addTable(table)

db.once("ready", () => {
    const data = {
        id: '1',
        swords: 5
    }

    db.insert("users", data) // Insert the data into a row in the database.

    db.set("users", {
        json: {
            set: {
                bool: true
            }
        }
    }, {
        column: 'id',
        equals: '1'
    }) // Set json value

    console.log(
        db.get("users", '1')
    ) // Get data back
})

db.connect()

Dependencies (3)

Dev Dependencies (6)

Package Sidebar

Install

npm i dbdts.db

Weekly Downloads

25

Version

4.4.1

License

MIT

Unpacked Size

155 kB

Total Files

189

Last publish

Collaborators

  • leref