UNPKG

rtree-sql.js

Version:

SQLite library with support for opening and writing databases, prepared statements, and more. This SQLite library is in pure javascript (compiled with emscripten).

29 lines (20 loc) 896 B
<!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>