Sqlweb Save

SqlWeb is an extension of JsStore which allows to use sql query for performing database operation in IndexedDB.

Project README

Build Status npm version

SqlWeb

SqlWeb is an extension of JsStore which allows to use sql query for performing database operation in IndexedDB.

Website

https://github.com/ujjwalguptaofficial/sqlweb/wiki

Examples

import * as JsStore from 'jsstore';
import SqlWeb from "sqlweb";

// create jsstore connection
var connection = new JsStore.Instance('jsstore worker path');

// add SqlWeb 
connection.addPlugin(SqlWeb);

// run select query
connection.$sql.run("select * from Customers").then(function(result) {
    console.log(result);
});

For a complete example - check out below link.

Open Source Agenda is not affiliated with "Sqlweb" Project. README Source: ujjwalguptaofficial/sqlweb

Open Source Agenda Badge

Open Source Agenda Rating