Skip to content

Releases: alexiusacademia/electron-db

v0.13.1

30 Apr 13:13
Compare
Choose a tag to compare
v0.13.1 Pre-release
Pre-release

New Feature

Clearing the entire table.

// Delete all the data
db.clearTable(dbName, dbLocation, (succ, msg) => {
    if (succ) {
        console.log(msg)

        // Show the content now
        db.getAll(dbName, dbLocation, (succ, data) => {
            if (succ) {
                console.log(data);
            }
        });
    }
})

v0.8.2

14 Feb 11:07
Compare
Choose a tag to compare

Fixed bug in updateRow method. (Error: only the first record can be found.)

electron-db v0.4.2

20 Oct 14:20
Compare
Choose a tag to compare
electron-db v0.4.2 Pre-release
Pre-release

electron-db v0.4.2

This is a pre-release version. Please submit an issue if you find any bugs or to suggest additional features.