forked from thachnb85/sql.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (20 loc) · 896 Bytes
/
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
<!doctype html>
<html>
<head>
<title>sql.js</title>
</head>
<body>
<h1>sql.js</h1>
<h2>Examples</h2>
<ol>
<li><a href="./examples/GUI">Online SQL Interpreter</a> Full featured Sqlite Interpreter running in your browser.</li>
<li><a href="./examples/repl.html">Online SQL read eval print loop</a> simple SQLite REPL </li>
<li><a href="./examples/persistent.html">Persistence</a> Persisting data</li>
<li><a href="./examples/requireJS.html">RequireJS</a> Load sql.js asynchronously using <a href="https://requirejs.org/">RequireJs</a></li>
<li><a href="./examples/simple.html">Simple Example</a> Demonstrates prepare,getAsObject, and other SQL.js methods. </li>
</ol>
Note: To run these examples locally, see <a href="./examples/readme.md">./examples/readme.md</a>
<h2>Source</h2>
<p><a href="https://github.com/kripken/sql.js">Source on Github</a></p>
</body>
</html>