1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

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
This commit is contained in:
stephan
2022-09-15 06:42:41 +00:00
parent dae7518ae4
commit 28ef9bddb3
16 changed files with 792 additions and 157 deletions

View File

@ -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.