Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dandimrod/indexsql

Project that simplifies the use of IndexedDB by making it compatible with SQL like sintaxis.
https://github.com/dandimrod/indexsql

indexeddb indexeddb-wrapper javascript sql

Last synced: 17 days ago
JSON representation

Project that simplifies the use of IndexedDB by making it compatible with SQL like sintaxis.

Awesome Lists containing this project

README

        

IndexSQL is a tool that helps with the use of IndexedDB by making it SQL like. Its use is as simple as:

var indexSQL=new IndexSQL("demo");
indexSQL.execute("CREATE TABLE test (column1 STRING, column2 BOOLEAN, column3 NUMBER);",
function(result){
//DO SOMETHING
}
);

To add it into your webpage you can use:

For more information, please check our [documentation](https://dandimrod.github.io/IndexSQL/docs).
You can also check a living [demo](https://dandimrod.github.io/IndexSQL/demo.html).