-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (45 loc) · 2.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>IndexSQL</title>
<meta name="Description" content="Project that simplifies the use of IndexedDB by making it compatible with SQL like sintaxis.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/IndexSQL/static/IndexSQL.png">
<link rel="stylesheet" href="/IndexSQL/static/style.css">
</head>
<body>
<div class="header">
<a href="#" class="logo"><img src="/IndexSQL/static/IndexSQL.png" alt="logo" height="30"> IndexSQL</a>
<div class="header-right">
<a class="active" href="/IndexSQL/">Home</a>
<a href="/IndexSQL/demo.html">Demo</a>
<a href="/IndexSQL/docs/">Docs</a>
<a href="https://github.com/dandimrod/IndexSQL">Git Repository</a>
</div>
</div>
<div style="margin: 1%">
<h1>What is IndexSQL?</h1>
<p>IndexSQL is a tool that helps with the use of IndexedDB by making it SQL like. Its use is as simple as:</p>
<pre>
<code>
var indexSQL=new IndexSQL("demo");
indexSQL.execute("CREATE TABLE test (column1 STRING, column2 BOOLEAN, column3 NUMBER);",
function(result){
//DO SOMETHING
}
);
</code>
</pre>
<p>To add it into your webpage you can use:</P>
<pre>
<xmp>
<script src="https://dandimrod.github.io/IndexSQL/src/IndexSQL.min.js" type="application/javascript"></script>
</xmp>
</pre>
<p>For more information, please check our <a href="docs/">documentation</a>.</p>
<p>You can also check a living <a href="demo.html">demo</a>.</p>
<p>Here is the project <a href="https://github.com/dandimrod/IndexSQL">repository</a>.</p>
<p>If you encounter any problems please report them on the <a href="https://github.com/dandimrod/IndexSQL/issues">bug tracker</a>.</p>
<p>This is a open soure project created by <a href="https://dandimrod.github.io">Daniel Diment</a>.</p>
</div>
</body>