Skip to content

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

License

Notifications You must be signed in to change notification settings

dandimrod/IndexSQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

<script src="https://dandimrod.github.io/IndexSQL/src/IndexSQL.min.js" type="​​application/javascript"></script>

For more information, please check our documentation.
You can also check a living demo.

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published