| Commit message (Expand) | Author | Age |
... | |
* | Refactor the sqlite3_value-to-JS conversion from an internal detail to sqlite... | stephan | 2022-12-09 |
* | Remove some unused sqlite3_status() codes from the JS API. Add custom JS wrap... | stephan | 2022-12-09 |
* | 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 |
* | Expose sqlite3_table_column_metadata() to wasm. | stephan | 2022-12-09 |
* | Expose sqlite3_db_status() and sqlite3_db_config() to wasm, noting that the l... | stephan | 2022-12-09 |
* | Rename wasm.cstringToJs() to wasm.cstrToJs() for consistency with other wasm.... | stephan | 2022-12-06 |
* | Minor internal JS code/docs cleanups. | stephan | 2022-12-06 |
* | Export collation-related APIs and strncmp()/strnicmp() to wasm. | stephan | 2022-12-05 |
* | Export sqlite3_vtab_collation() to wasm. Rename 'flexible-string' JS argument... | stephan | 2022-12-05 |
* | Rename 'static-string' argument adapter to 'string:static'. Replace JS unit t... | stephan | 2022-12-05 |
* | Export sqlite3_bind/value/result_pointer() to wasm. Add 'static-string' argum... | stephan | 2022-12-05 |
* | More work on the JS side of the virtual table APIs. | stephan | 2022-12-05 |
* | Remove some dead code. Improve some error checks and comments. | stephan | 2022-12-05 |
* | Initial infrastructure for adding virtual table/table-valued function support... | stephan | 2022-12-05 |
* | JavaScript: add sqlite3.wasm.realloc(), sqlite3.capi.SQLITE_MAX_ALLOCATION_SI... | stephan | 2022-12-03 |
* | sqlite3_js_create_file() now accepts an ArrayBuffer data source. Add test for... | stephan | 2022-12-01 |
* | Expand "sqlite3_vfs*" JS-to-WASM function argument conversions to accept VFS ... | stephan | 2022-12-01 |
* | Rename some OPFS JS files. Prevent JS bindings of sqlite3_uri_...() from perf... | stephan | 2022-11-30 |
* | Globally replace '' with "" for empty JS strings to please C preprocessor. | stephan | 2022-11-03 |
* | Minor internal cleanups in the js pieces. | stephan | 2022-11-01 |
* | Worker1: use a list, rather than a single slot, to manage the default db link... | stephan | 2022-10-31 |
* | Move the sqlite3.capi.wasm namespace to sqlite3.wasm. This causes a tiny bit ... | stephan | 2022-10-29 |
* | Add ext/wasm/module-symbols.html. Adjacent minor JS touchups. | stephan | 2022-10-28 |
* | Expose sqlite3_randomness() to WASM and add a custom binding for it which can... | stephan | 2022-10-27 |
* | Expose sqlite3_vfs_unregister() to WASM and unregister kvvfs in Worker thread... | stephan | 2022-10-21 |
* | Make semantics for UDF xFinal() result handling and error reporting handling ... | stephan | 2022-10-20 |
* | Rename sqlite3_web_... to sqlite3_js_... Document the worker1.close.unlink op... | stephan | 2022-10-20 |
* | Rework sqlite3_wasm_vfs_unlink(), add sqlite3_wasm_db_vfs(), update some docs. | stephan | 2022-10-20 |
* | JS: add build-time-generated version info to the sqlite3.version object. Remo... | stephan | 2022-10-16 |
* | Move the rest of testing1.js into tester1.js and eliminate the dependency on ... | stephan | 2022-10-13 |
* | Remove some extraneous debug output. | stephan | 2022-10-09 |
* | Refactor kvvfs JS bits to make use of [ea370b9b05f7ed7eaa]. At main-thread st... | stephan | 2022-10-09 |
* | Minor cleanups and additions in sqlite3.capi.wasm.pstack. | stephan | 2022-10-04 |
* | Minor JS doc updates and typo fixes. | stephan | 2022-10-03 |
* | Export sqlite3_trace_v2() to wasm and use it to ensure that the new per-VFS p... | stephan | 2022-10-03 |
* | OPFS VFS now lazily opens its sync access handle, as a step towards experimen... | stephan | 2022-10-03 |
* | Minor JS API tweaks prompted by documenting them. | stephan | 2022-10-03 |
* | More cleanups in the UDF argument and result handling, in particular int64. C... | stephan | 2022-10-02 |
* | JS: clean up create_function() wrapper and add support for create_window_func... | stephan | 2022-10-02 |
* | js: implement a hand-written wrapper for sqlite3_create_function_v2() which c... | stephan | 2022-10-02 |
* | Doc typo fixes. | stephan | 2022-10-02 |
* | More fleshing out of sqlite3.capi.wasm.pstack. | stephan | 2022-10-02 |
* | Fiddle: fix makefile dependency issue and duplicate inclusion of post-js.js. ... | stephan | 2022-10-01 |
* | Add JS wrapper for sqlite3_exec() which knows how to handle a JS callback. Ad... | stephan | 2022-09-30 |
* | Add sqlite3.version object. Add more state to the Worker #1 config-get respon... | stephan | 2022-09-30 |
* | wasm: expose sqlite3_de/serialize(), sqlite3_malloc/free() and friends, notin... | stephan | 2022-09-30 |
* | Work around broken -Os wasm builds by adding the -g3 flag. Unrelated document... | stephan | 2022-09-28 |
* | Get fiddle db export working for OPFS VFS. Add root dir handle to the main OP... | stephan | 2022-09-26 |
* | Reformulate some JS to work around a buggy/broken code transformation in one ... | stephan | 2022-09-21 |