| Commit message (Expand) | Author | Age |
* | WASM: various build cleanups and add initial infrastructure for a build which... | stephan | 2024-01-01 |
* | Extend detection of the INSERT...RETURNING locking case to the DB.selectValue... | stephan | 2023-05-19 |
* | Minor doc typo fix. | stephan | 2023-05-19 |
* | oo1.Stmt.finalize() no longer throws, but instead returns the same as the C A... | stephan | 2023-05-19 |
* | sqlite3.oo1.Stmt.reset() now throws if sqlite3_reset() returns non-zero, anal... | stephan | 2023-05-19 |
* | Add a basic INSERT RETURNING test for the oo1.DB.exec() API. | stephan | 2023-05-19 |
* | sqlite3.oo1.Stmt.finalize() now throws if sqlite3_finalize() returns non-zero... | stephan | 2023-05-19 |
* | Doc typo fix. No code changes. | stephan | 2023-05-10 |
* | Resolve the JS-side corner case reported in [forum:7774b773937cbe0a | forum p... | stephan | 2023-05-10 |
* | Replace use of 'self' in JS code with 'globalThis', as that works in browsers... | stephan | 2023-03-07 |
* | Add capability to override the JS's use of console.log/debug/warn/error() wit... | stephan | 2023-02-06 |
* | Enhance oo1.DB.exec() to simplify returning whole result sets. | stephan | 2023-01-28 |
* | Add a feature idea note to DB.exec(), derived from a forum discussion. | stephan | 2023-01-27 |
* | Add an optional argument to oo1.DB.transaction() to specify an explicit BEGIN... | stephan | 2022-12-27 |
* | Correct some internal-use JS docs and update the 'string:flexible' type conve... | stephan | 2022-12-26 |
* | Minor internal API doc correction and extend a test for oo1.DB.selectValues(). | stephan | 2022-12-25 |
* | Add sqlite3.oo1.DB.selectValues(). Correct a logic error which could cause DB... | stephan | 2022-12-25 |
* | Add the address of the associated db handle to the sqlite3_trace_v2() output ... | stephan | 2022-12-25 |
* | Replace JS-side use of SQLITE_TRANSIENT with the new SQLITE_WASM_DEALLOC, red... | stephan | 2022-12-24 |
* | Extend oo1.Stmt.bind() to accept ArrayBuffer instances to bind as blobs. | stephan | 2022-12-24 |
* | Add a test for the (failure) case of client-level code calling the oo1.Stmt c... | stephan | 2022-12-24 |
* | oo1.DB.exec() rowMode="$columnName": a minor optimization and a preemtive fix... | stephan | 2022-12-24 |
* | If sqlite3.oo1.DB.exec()'s callback returns a literal false, stop step()ing o... | stephan | 2022-12-24 |
* | Reimplement JS's sqlite3_bind_text/blob() with hand-written bindings to permi... | stephan | 2022-12-23 |
* | Internal JS cleanups. Correct part of [ac136925a645] to account for the eText... | stephan | 2022-12-23 |
* | Add convenience variants of sqlite3.wasm.peek/poke() for each numeric type to... | stephan | 2022-12-14 |
* | A micro-optimization in sqlite3.oo1.DB.exec(). Changed the rowMode option of ... | stephan | 2022-12-14 |
* | Extend the sqlite3.wasm function pointer argument converter to be able to han... | stephan | 2022-12-13 |
* | Rename the oft-used, verbose sqlite3.wasm.get/setMemValue() and get/setPtrVal... | stephan | 2022-12-09 |
* | Export sqlite3_status() and sqlite3_stmt_status() to wasm. Expand the arg/ret... | stephan | 2022-12-09 |
* | Got JS non-eponymous vtable working thanks to a hint from Dan. | stephan | 2022-12-08 |
* | Rename wasm.cstringToJs() to wasm.cstrToJs() for consistency with other wasm.... | stephan | 2022-12-06 |
* | Add a demonstration sqlite3_vtab/module implemented in JS, based on ext/misc/... | stephan | 2022-12-06 |
* | Export sqlite3_vtab_collation() to wasm. Rename 'flexible-string' JS argument... | stephan | 2022-12-05 |
* | Rework the oo1.DB's distinct-per-VFS post-open() step to accept either a batc... | stephan | 2022-12-03 |
* | Remove extraneous/unused sqlite3.oo1.version object. Add httpd makefile target. | stephan | 2022-12-02 |
* | OPFS VFS: add the opfs-unlock-asap=1 URI flag which tells the VFS to release ... | stephan | 2022-11-26 |
|\ |
|
| * | Initial infrastructure for adding a mode to the OPFS VFS which causes implici... | stephan | 2022-11-23 |
* | | Add sqlite3.oo1.DB.prototype.checkRc() and tests for both that method and its... | stephan | 2022-11-24 |
|/ |
|
* | Minor internal cleanups in the js pieces. | stephan | 2022-11-01 |
* | Significant cleanups and expansion of the sqlite3.opfs utilities. Add oo1.DB.... | stephan | 2022-11-01 |
* | Add oo1.DB.exec() 'returnValue' option, which specifies what exec() should re... | stephan | 2022-10-31 |
* | Add oo1.DB.selectArray() and selectObject(). | stephan | 2022-10-30 |
* | Move the sqlite3.capi.wasm namespace to sqlite3.wasm. This causes a tiny bit ... | stephan | 2022-10-29 |
* | Minor sqlite3.oo1 API reorg prompted by documenting. | stephan | 2022-10-28 |
* | Replace the newly-removed oo1.DB.getFilename() with DB.dbFilename() with the ... | stephan | 2022-10-26 |
* | Remove oo1.DB.hasFilename() and getFilename(), as they are unnecessary. | stephan | 2022-10-26 |
* | Add kvvfs tests to tester1.js. Fix a scopedAlloc() misuse in oo1.DB ctor caus... | stephan | 2022-10-21 |
* | Add timing info and OPFS sanity tests to tester1.js | stephan | 2022-10-21 |
* | Expose sqlite3_vfs_unregister() to WASM and unregister kvvfs in Worker thread... | stephan | 2022-10-21 |