dbdts.db
v4.4.1
Published
Easy to use wrapper for sqlite databases, mainly designed for use with dbd.ts package.
Downloads
379
Maintainers
Readme
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()