diff options
author | stephan <stephan@noemail.net> | 2022-09-15 06:42:41 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-09-15 06:42:41 +0000 |
commit | 28ef9bddb3bdd823711d818d67ba16ae286c6c69 (patch) | |
tree | 5aaff7ed87ba7d336b39f6e1bf1e00ab2993ce08 /ext/wasm/api/sqlite3-api-oo1.js | |
parent | dae7518ae407ab379068cd3685e773b462d3b61a (diff) | |
download | sqlite-28ef9bddb3bdd823711d818d67ba16ae286c6c69.tar.gz sqlite-28ef9bddb3bdd823711d818d67ba16ae286c6c69.zip |
More work on the synchronous OPFS experimentation. Numerous wasm/js build tweaks. Add speeedtest-wasmfs.html, the wasmfs/opfs counterpart of speedtest1.html.
FossilOrigin-Name: 00ee49a3a2c148480f614e49a0ee5b35a255758c0a53693f0b464b31e7a4045b
Diffstat (limited to 'ext/wasm/api/sqlite3-api-oo1.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-oo1.js | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ext/wasm/api/sqlite3-api-oo1.js b/ext/wasm/api/sqlite3-api-oo1.js index 6a8c22939..368986933 100644 --- a/ext/wasm/api/sqlite3-api-oo1.js +++ b/ext/wasm/api/sqlite3-api-oo1.js @@ -1383,12 +1383,11 @@ self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){ return this.reset(); }, /** - Functions like step() except that - it finalizes this statement immediately after stepping unless - the step cannot be performed because the statement is - locked. Throws on error, but any error other than the - statement-is-locked case will also trigger finalization of this - statement. + Functions like step() except that it finalizes this statement + immediately after stepping unless the step cannot be performed + because the statement is locked. Throws on error, but any error + other than the statement-is-locked case will also trigger + finalization of this statement. On success, it returns true if the step indicated that a row of data was available, else it returns false. |