Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dandimrod/indexsql
- Owner: dandimrod
- License: mit
- Created: 2019-05-02T10:54:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T19:16:15.000Z (over 3 years ago)
- Last Synced: 2024-10-10T06:02:25.321Z (29 days ago)
- Topics: indexeddb, indexeddb-wrapper, javascript, sql
- Language: JavaScript
- Homepage: https://dandimrod.github.io/IndexSQL/
- Size: 1.76 MB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).