This is SQLite compiled from C to JavaScript using Emscripten.


Enter some SQLite:
CREATE TABLE t2(key INTEGER, value INTEGER, text VARCHAR(100)); INSERT INTO t2 VALUES(1, 25, 'first item'); INSERT INTO t2 VALUES(2, 987, '2nd item.'); INSERT INTO t2 VALUES(3, 4321, 'The Third Item'); SELECT key, text FROM t2 WHERE value == 987;