Jean-Denis Muys wrote:
> I am now looking for a Javascript implementation of the SQLite library.

<https://github.com/kripken/sql.js> says:
| sql.js is a port of SQLite to JavaScript, by compiling the SQLite
| C code with Emscripten.

It's completely in-memory, but:

| Database objects ... have the following methods:
| * .exportData() serializes the data to a typed array of 8-bit values,
|   which you can save using any method you like (localStorage,
|   indexedDB, send to a remote server, etc.), and later re-use by
|   calling SQL.open with that data.

It's one of the engines used on sqlfiddle.com, and seems to work just
fine.


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to